1.3.2 • Published 1 year ago
linksfield-ui-vue v1.3.2
linksfield-ui-vue
Project setup
npm installCompiles and hot-reloads for development
npm run serveCompiles and minifies for production
npm run buildLints and fixes files
npm run lint使用组件库
安装组件库依赖全局注册
在需要使用的vue项目中npm install linksfield-ui-vue添加进来,然后在main.js中进行全局注册,如下:
import { createApp } from 'vue'
import App from './App.vue'
import linksfieldUI from 'linksfield-ui-vue'
const app = createApp(App)
//组件注册
app.use(linksfieldUI)
app.mount('#app')按需引入
import { createApp } from 'vue'
import App from './App.vue'
import {batchSelect} from 'linksfield-ui-vue'
const app = createApp(App)
//组件注册
app.use(batchSelect)
app.mount('#app')在组件中使用
<template>
<div>
<batch-select></batch-select>
</div>
</template>组件API
使用Ant Design of Vue 3.x 版本Api, see https://www.antdv.com/docs/vue/introduce-cn
Customize configuration
1.3.2
1 year ago
1.3.1
2 years ago
1.3.0
2 years ago
1.2.9
2 years ago
1.2.8
2 years ago
1.2.7
2 years ago
1.2.6
2 years ago
1.2.0
2 years ago
1.2.5
2 years ago
1.2.4
2 years ago
1.2.3
2 years ago
1.2.2
2 years ago
1.2.1
2 years ago
1.1.9
2 years ago
1.1.8
2 years ago
1.1.7
2 years ago
1.1.6
3 years ago
1.1.5
3 years ago
1.1.4
3 years ago
1.1.3
3 years ago
1.1.2
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago
0.1.7
3 years ago
0.1.6
3 years ago
0.1.5
3 years ago
0.1.4
3 years ago
0.1.3
3 years ago
0.1.2
3 years ago
0.1.1
3 years ago
0.1.0
3 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.3
3 years ago
0.0.2
3 years ago
0.0.1
3 years ago