1.0.0-beta.2 • Published 8 months ago

focustar-ui v1.0.0-beta.2

Weekly downloads
-
License
GPL-3.0 License
Repository
github
Last release
8 months ago

FOCUSTAR UI

FOCUSTAR UI 是基于Element UI二次开发的Vue组件库,提供企业软件开发时常用的组件,过滤器,指令等

安装

npm install focustar-ui

使用时需要安装Element UI

npm install element-ui

因为需要使用scss,所以需要安装sass

npm install -D sass-loader@10.1.0 sass@1.43.4

完整引入

import Vue from 'vue';
import ElementUI from 'element-ui'
import FOCUSTARUI from 'focustar-ui';
import "focustar-ui/src/styles/index.scss"; // 已经包含了element ui的scss
import App from './App.vue';

Vue.use(ElementUI);
Vue.use(FOCUSTARUI);

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

按需引入

借助 babel-plugin-import,我们可以只引入需要的组件,以达到减小项目体积的目的。

首先,安装 babel-plugin-component:

npm install babel-plugin-import -D

然后,在 babel.config.js 中写入以下内容:

module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ],
  plugins: [
    [
      "import",
      {
        "libraryName": "focustar-ui",
        "customStyleName": (name) => {
          return `focustar-ui/src/styles/components/${name}.scss`;
        },
      },
    ],
  ]
}

接下来,就可以引入部分组件,比如 SearchBar 和 Table,那么需要在 main.js 中写入以下内容:

import Vue from 'vue';
import ElementUI from 'element-ui'
import 'focustar-ui/src/styles/require.scss'; // 已经包含了element ui的scss
import {SearchBar, Table} from 'focustar-ui';
import App from './App.vue';

Vue.use(ElementUI);
Vue.use(SearchBar);
Vue.use(Table);

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

国际化

使用vue-i18n

import Vue from 'vue';
import FOCUSTARUI from 'focustar-ui';
import "focustar-ui/src/styles/index.scss"; // 已经包含了element ui的scss
import zhCN from "focustar-ui/src/locale/lang/zh-CN";
import App from './App.vue';

const message = {
  'zh-CN': {
    hello: '你好',
    ...zhCN
  }
}

const i18n = new VueI18n({
  locale: 'zh-CN',
  messages,
});

Vue.use(FOCUSTARUI, {
  i18n: (key, value) => i18n.t(key, value)
});

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