English | 简体中文
Tu View for vue 2.x is here!
With more than 20 crafted components that you can use out of the box(more components are under development..).
Extensive theme settings can be customized to build your own theme:
All components are written in TypeScript so it's type friendly.
Available as an npm package
// with npm
npm install tu-view-plus
// with yarn
yarn add tu-view-plusimport { createApp } from 'vue'
import App from './App.vue';
import TuViewPlus from 'tu-view-plus';
const app = createApp(App);
app.use(TuViewPlus);
app.mount('#app');-
Use
pnpm install -gto install basic packages such aslernaandyarn. -
Use
yarn installto install the dependencies of each package inworkspaces(If you encounter aYN0018error, you can useYARN_CHECKSUM_BEHAVIOR=update yarnto install). -
Use
pnpm run devto initialize the project.