1.1.2 • Published 3 years ago

vue3-custom-components v1.1.2

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

vue3-components

A Vue.js 3 UI library

npm node extension for


安装

node:>= 20

npm

这里推荐pnpm进行安装

pnpm install vue3-custom-components --save

使用

全局引入

main.js

import { createApp } from 'vue';
import App from './App.vue';
// 完整引入组件库
import Vue3Component from 'vue3-custom-components';

const app = createApp(App);
// 全局安装
app.use(Vue3Component).mount('#app');

组件当中

<vue-button type="success">按钮组件</vue-button>

按需引入

main.js

import { createApp } from 'vue';
import App from './App.vue';
// 按需引入
import { VueButton } from 'vue3-custom-components';

const app = createApp(App);

app.use(VueButton).mount('#app');

组件当中

<vue-button type="success">按钮组件</vue-button>

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.38

3 years ago

1.0.37

3 years ago

1.0.36

3 years ago

1.0.35

3 years ago

1.0.34

3 years ago

1.0.33

3 years ago

1.0.32

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.29

3 years ago

1.0.28

3 years ago

1.0.26

3 years ago

1.0.25

3 years ago

1.0.24

3 years ago

1.0.22

3 years ago

1.0.20

3 years ago

1.0.19

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

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.0.1

3 years ago

0.0.0

3 years ago