1274580448 / varlet

Material design mobile component library for Vue3

Home Page:https://varlet.gitee.io/varlet-ui/#/en-US/index

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VARLET

Material design mobile component library for Vue3

Documentation(Vercel) | Documentation(Gitee) | ไธญๆ–‡README

version stars vue licence coverage gzip ci


Intro

Varlet is a Material design mobile component library developed based on Vue3, developed and maintained by varletjs community team.

Features

  • ๐Ÿš€   Provide 60+ high quality general purpose components
  • ๐Ÿš€   Components are very lightweight
  • ๐Ÿ’ช   Developed by Chinese, complete Chinese and English documentation and logistics support
  • ๐Ÿ› ๏ธ   Support on-demand introduction
  • ๐Ÿ› ๏ธ   Support theme customization
  • ๐ŸŒ   Support internationalization
  • ๐Ÿ’ก   Support WebStorm syntax highlighting
  • ๐Ÿ’ช   Support the SSR
  • ๐Ÿ’ก   Support the Typescript
  • ๐Ÿ’ช   Make sure more than 90 percent unit test coverage, providing stability assurance
  • ๐Ÿ› ๏ธ   Support dark mode
  • ๐Ÿ› ๏ธ   Provide official VSCode extension

Install

CDN

varlet.js contain all the styles and logic of the component library, and you can import them.

<div id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
 <!-- Desktop Adaptation -->
<script src="https://cdn.jsdelivr.net/npm/@varlet/touch-emulator/iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@varlet/ui/umd/varlet.js"></script>
<script>
  const app = Vue.createApp({
    template: '<var-button>Button</var-button>'
  })
  app.use(Varlet).mount('#app')
</script>

Webpack / Vite

# Install with npm or yarn or pnpm

# npm
npm i @varlet/ui -S

# yarn
yarn add @varlet/ui

# pnpm
pnpm add @varlet/ui
import App from './App.vue'
import Varlet from '@varlet/ui'
import { createApp } from 'vue'
import '@varlet/ui/es/style'

createApp(App).use(Varlet).mount('#app')

Official Ecosystem

The following projects are maintained by the official team for a long time.

Name Description
@varlet/cli Vue3 component library rapid prototyping tool
@varlet/touch-emulator Desktop adapter, so that the mobile component library can run on the desktop
@varlet/ui-playground Varlet component library online editing tool
varlet-vscode-extension Varlet Component Library VSCode Plugin
vscode-theme-varlet Varlet VSCode Theme
varlet-app-example Varlet component library app template
varlet-install-example Case collection of Varlet component library and various ecosystem integration

Community Ecosystem

The following projects are maintained by community personnel, welcome to add.

Name Description
vue-h5-template Vue-based mobile template scaffolding, providing mobile presets for Varlet component library
create-vite-app A desktop template scaffolding based on Vue3, providing desktop presets for Varlet component library
vscode-common-intellisense A VS Code extension that provides better intellisense to Varlet developers

Playground

See Varlet UI Playground.

Contribution

See Contributing Guide.

Community

We recommend that issue be used for problem feedback, or others:

  • Wechat group

Thanks to contributors

Thanks to the following sponsors

Sponsor this project

Sponsor this project to support our better creation. It is recommended to use afdian to subscribe, and your avatar will appear in this project.

Afdian

https://afdian.net/a/haoziqaq

Wechat / Alipay

About

Material design mobile component library for Vue3

https://varlet.gitee.io/varlet-ui/#/en-US/index

License:MIT License


Languages

Language:Vue 37.9%Language:TypeScript 27.8%Language:JavaScript 24.8%Language:Less 9.4%Language:EJS 0.1%