码迷,mamicode.com
首页 > 其他好文 > 详细

iview的使用入门

时间:2018-06-28 13:45:17      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:view   lint   use   config   col   save   统一   ons   mod   

(1)在git bash中安装iview,即:

npm install iview --save

(2)在main.js中引用并注册iView,即:

import iView from ‘iview‘
import ‘iview/dist/styles/iview.css‘

Vue.use(iView)

(3)为了统一IView标签的书写规范,通过安装iView Loader,即:

npm install iview-loader --save

然后修改webpack选项,如下:

 1 rules: [
 2    ...(config.dev.useEslint ? [createLintingRule()] : []),
 3    {
 4      test: /\.vue$/,
 5      use: [
 6        {
 7          loader: ‘vue-loader‘,
 8          options: vueLoaderConfig
 9        },
10        {
11          loader: ‘iview-loader‘,
12          options: {
13              prefix: false
14          }
15        }
16      ]
17      
18    },
19    {
20      test: /\.js$/,
21      loader: ‘babel-loader‘,
22      include: [resolve(‘src‘), resolve(‘test‘), resolve(‘node_modules/webpack-dev-server/client‘)]
23 }

 

iview的使用入门

标签:view   lint   use   config   col   save   统一   ons   mod   

原文地址:https://www.cnblogs.com/lanyb009/p/9238111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!