Nuxt 中 按需引入 Element-ui 组件
1. 安装 element-uinpm i element-ui -S2. 在根目录下的plugins下创建element-ui.js文件,以下是我的文件内容import Vue from 'vue'import {Pagination,Loading,Alert,Notification} from 'element-ui' //引入分页组件Vue.prototype.$ELEMENT = ..
·
1. 安装 element-ui
npm i element-ui -S
2. 在根目录下的plugins下创建element-ui.js文件,以下是我的文件内容
import Vue from 'vue'
import {Pagination,Loading,Alert,Notification} from 'element-ui' //引入分页组件
Vue.prototype.$ELEMENT = { size: 'small' };
Vue.use(Pagination);
Vue.use(Loading);
Vue.use(Alert);
Vue.prototype.$notify = Notification;
3. 然后将根目录下的nuxt.config.js文件修改为
css:[
{src:'element-ui/lib/theme-chalk/index.css'}
],
plugins: [{
src:'~plugins/element-ui',
ssr: true //是能在服务端运行
}]
4. 配置完成,可以在 .vue文件中使用了更多推荐
已为社区贡献31条内容
所有评论(0)