@sonli-design/sun-ui
v0.1.62
Published
Sun Design Vue 2.0: A Vue.js 3 UI Library
Readme
A comprehensive Vue UI components library based on the Sun Design system.
English | 简体中文
Features
Comprehensive
With more than 60 crafted components that you can use out of the box.
TypeScript friendly
All components are written in TypeScript so it's type friendly.
Installation
Available as an npm package
// with npm
npm install @sonli-design/sun-ui
// with yarn
yarn add @sonli-design/sun-uiExamples
import { createApp } from 'vue'
import SunVue from '@sonli-design/sun-ui';
import App from './App.vue';
import '@sonli-design/sun-ui/dist/sun.css';
const app = createApp(App);
app.use(SunVue);
app.mount('#app');Development
Use
npm installto install basic packages such aslernaandyarnUse
yarn installto install the dependencies of each package inworkspaces(If you encounter aYN0018error, you can useYARN_CHECKSUM_BEHAVIOR=update yarnto install)Use
npm run initto initialize the project
