laravel+vue+element

2018-01-05  本文已影响70人  jacklin1992

参考链接

修正
  1. 引入element 之后

app.js修改为

window.Vue = require('vue');
import Hello from './components/hello.vue'; // 引入Hello 组件
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);

const app = new Vue({
el: '#app',
render: h => h(Hello)
});

上一篇下一篇

猜你喜欢

热点阅读