安裝套件

安裝額外套件,以 iview 為例。

NPM 安裝

$ npm install iview --save

引入iView

一般在 webpack 入口頁面 main.js 中如下配置:

import Vue from 'vue'
import App from './App'
import router from './router'
import iView from 'iview'             //載入 iview
import 'iview/dist/styles/iview.css'  //載入iview 的 Css

Vue.use(iView);

new Vue({
    el: '#app',
    router,
    template: '<App/>',
    components: {App}
});

國際化

iView 的所有組件文案默認使用的是中文,通過設置可以使用其它語言,以英文為例,在 main.js 中:

import Vue from 'vue';
import iView from 'iview';
import locale from 'iview/src/locale/lang/en-US';

Vue.use(iView, {locale});

results matching ""

    No results matching ""