0.11.4 • Published 2 years ago

zov v0.11.4

Weekly downloads
18
License
ISC
Repository
-
Last release
2 years ago

ZOV

一个基于vue的后台系统组件库。官网

用法

node

yarn add zov
npm install zov
import Zov from '../core'
Vue.use(Zov)
// or
import { ColorPicker } from '../core'
Vue.component('ColorPicker', ColorPicker)

browser

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.js"></script>
<script src="https://unpkg.com/zov@0.6.0/lib/zov.min.js"></script>
<script src="https://unpkg.com/zov@0.6.0/lib/zov.min.css"></script>

推荐链接到一个明确的版本号和构建文件,以避免新版本造成的不可预期的破坏

<div id=app>
    <z-input v-model="input" autofocus placeholder="这是一个自定获取焦点的input"></z-input>
    <z-select
        :data="[{
                value: 1,
                label: 'item#1',
                disabled: true
            }, {
                value: 2,
                label: 'item#2'
            }]"
        placeholder="单选,某项disabled"
    >
        <div slot-scope="{props}">
            {{ props.item.label }}
        </div>
    </z-select>
    <z-time-picker
        format="H时m分"
        :steps="[2, 10, 15]"
    ></z-time-picker>
</div>
0.11.4

2 years ago

0.11.3

4 years ago

0.11.2

4 years ago

0.10.3

5 years ago

0.10.2

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.2

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.8.0

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

6 years ago