1.1.2 • Published 4 years ago

vuti v1.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

特点

  • 高扩展性:通过修改css3全局变量,组件局部变量来达到变更主题风格。
  • 轻量:摒弃通过css扩展语言,组件主体使用标准js写法,减少代码编译成本。
  • 插件化:组件事件、参数上升,注册时可自定义组件事件与参数。
  • 风格统一:组件通过一套规范化、变量化属性组成。
  • es模式: 支持treeshaking机制,导入时只会加载使用的组件相关代码。
  • UMD模式: 支持Commonjs、iife、amd方式引用

使用

support

es6用法

安装vuti依赖包

$ npm install vuti

在工程入口引入vuti或全局注册组件

import Vue from 'vue'
import vuti from 'vuti'
import { plugins, tButton } from 'vuti'

/** 
 * 可使用插件模式调用组件
 */
Vue.use(plugins)

/** 
 * 全局注册组件
 */
Vue.component('tButton', tButton)

/** 
 * vuti.set设置全局变量
 */
vuti.set({
  '--color-t1': 'red',
  ...
})

局部注册vuti组件

import { tCell, vPopup as tPopup } from 'vuti'

...,
  components: {
    tCell,
    vPopup
  },
...

browser用法

在页面入口引入js库

// 引入vue
<script src="https://raw.githubusercontent.com/vuejs/vue/dev/dist/vue.min.js"></script>
// 引入vuti
<script src="https://cdn.jsdelivr.net/npm/vuti@1/dist/vuti.min.js"></script>

通过Vue注册公共组件来使用

let {plugins, tCell, tButton, ...} = Vuti

Vue.use(plugins)

Vue.component('tCell', tCell)
Vue.component('tButton', tButton)
new Vue({
  ...
})

注册Vue局部组件

let {tCell, tButton, ...} = Vuti
new Vue({
  components: {
    tCell,
    tButton
  },
  ...
})

文档与demo

使用文档请访问, demo请访问

Github

1.1.2

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.28

5 years ago

1.0.27

5 years ago

1.0.26

5 years ago

1.0.25

5 years ago

1.0.24

5 years ago

1.0.23

5 years ago

1.0.22

5 years ago

1.0.21

5 years ago

1.0.20

5 years ago

1.0.19

5 years ago

1.0.18

5 years ago

1.0.15

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago