GithubHelp home page GithubHelp logo

kokudolly / fit2cloud-ui Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fit2cloud-ui/fit2cloud-ui

0.0 1.0 0.0 2.85 MB

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

Home Page: https://fit2cloud-ui.github.io/docs/

License: GNU General Public License v2.0

JavaScript 21.18% Vue 64.24% SCSS 14.58%

fit2cloud-ui's Introduction

FIT2CLOUD UI

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

快速开始

安装

npm install fit2cloud-ui

使用时需要安装Element UI

npm install element-ui

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

npm install -D sass-loader node-sass

完整引入

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

Vue.use(ElementUI);
Vue.use(Fit2CloudUI);

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": "fit2cloud-ui",
        "customStyleName": (name) => {
          return `fit2cloud-ui/src/styles/components/${name}.scss`;
        },
      },
    ],
  ]
}

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

import Vue from 'vue';
import ElementUI from 'element-ui'
import'fit2cloud-ui/src/styles/require.scss'; // 已经包含了element ui的scss
import { SearchBar, Table } from 'fit2cloud-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 Fit2CloudUI from 'fit2cloud-ui';
import "fit2cloud-ui/src/styles/index.scss"; // 已经包含了element ui的scss
import zhCN from "fit2cloud-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(Fit2CloudUI, {
  i18n: (key, value) => i18n.t(key, value)
});

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

组件文档

文档地址:https://fit2cloud-ui.github.io/docs/

致谢

  • Element:感谢 Element 提供的优秀组件库

fit2cloud-ui's People

Contributors

fit2cloudrd avatar q4speed avatar wangdan-fit2cloud avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.