Vue 项目中基于Element-ui 二次封装基础组件文档;Vue基础组件文档
T-uiVue3 is a set of basic components for Vue.js, built on top of Element-plus and ant-design-vue. It aims to provide a streamlined and easy-to-use library of components for Vue developers.
To install T-uiVue3, follow these steps:
npm install t-uivue3 --save
import { Button, Input } from 't-uivue3';
// Use the components in your Vue template
<template>
<div>
<Button type="primary">Click me</Button>
<Input v-model="inputValue" />
</div>
</template>
// Register the components in your main.js file
import { createApp } from 'vue';
import App from './App.vue';
const app = createApp(App);
app.use(Button);
app.use(Input);
app.mount('#app');
T-uiVue3 is a library of basic components for Vue.js, built on top of Element-plus and ant-design-vue. It provides a wide range of components that are easy to integrate into your Vue projects. With detailed documentation and examples, it aims to simplify the development process for Vue developers.