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-plus
import { 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 -g
to install basic packages such aslerna
andyarn
. -
Use
yarn install
to install the dependencies of each package inworkspaces
(If you encounter aYN0018
error, you can useYARN_CHECKSUM_BEHAVIOR=update yarn
to install). -
Use
pnpm run dev
to initialize the project.