@vtx/vue-components

基于 ant-design-vue 二次封装的 vue 组件库

Usage no npm install needed!

<script type="module">
  import vtxVueComponents from 'https://cdn.skypack.dev/@vtx/vue-components';
</script>

README

@vtx/vue-components

基于 ant-design-vue 二次封装的 vue 组件库

安装

yarn add @vtx/vue-components -S

使用

<template>
    <VtxModal>模态框</VtxModal>
</template>
<script>
import { VtxModal } from '@vtx/vue-components';

new Vue({
    components: {
        VtxModal,
    },
});
</script>