3.14.0 • Published 11 months ago

zsap-ui v3.14.0

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

English | 简体中文

🌈 Features:

  • 📦 104 clean, easy-to-use and powerful components.
  • 🖖 One code, Support both Vue.js 2 and Vue.js 3.
  • 🖥️ One code, Support both PC and Mobile.
  • 🌍 Support internationalization.
  • 🎨 Support theme customization.
  • 📊 Components support configuration development, can support low-code platform.
  • 💡 Use a cross-end and cross-framework architecture, flexible and portable.

🛠️ Usage

1. Installation

Execute the following command to install the ZsapVue component library for Vue.js 3.

npm i @zsap/vue@3

Execute the following command to install the ZsapVue component library for Vue.js 2.

npm i @zsap/vue@2

2. Import component

Then you can use the ZsapVue component(such as <tiny-button>) in the App.vue file.

<script lang="ts" setup>
  import { Button as ZsapButton } from '@zsap/vue'
</script>

<template>
  <zsap-button>zsap Vue</zsap-button>
</template>

🖥️ Development

git clone http://10.56.190.22/git/zsap-spa/zsap-ui.git
cd zsap-ui
pnpm i

# Vue.js 3
pnpm dev

# Vue.js 2
pnpm dev2