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文件中使用了
Logo

前往低代码交流专区

更多推荐