changlu-ui
TypeScript icon, indicating that this package has built-in type declarations

1.0.22 • Public • Published

changlu-ui 组件库

快速开始

一款基于Vue3的前端组件库

changlu-ui

安装组件库

    npm install changlu-ui

引入组件库

    //全部引入
    import 'changlu-ui/theme-default/index.css'
    import CLUI from 'changlu-ui';

    // 按需引入
    import 'changlu-ui/theme-default/ClButton.css'
    import { ClButton } from 'changlu-ui'

    createApp({
    data() {
        return {
        message: 'Hello CLUI!',
        }
    },
    })
    .use(CLUI)
    //   .use(ClButton)
    .mount('#app')

目的

  • 体会vue3在具体项目中的使用
  • 深入了解常用组件库的开发方式
  • 熟悉typescript的使用
  • vite构建工具的使用,分析与webpack的区别

Vue 3 + Typescript + Vite

This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

Since TypeScript cannot handle type information for .vue imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue imports (for example to get props validation when using manual h(...) calls), you can enable Volar's .vue type support plugin by running Volar: Switch TS Plugin on/off from VSCode command palette.

Package Sidebar

Install

npm i changlu-ui

Weekly Downloads

17

Version

1.0.22

License

MIT

Unpacked Size

671 kB

Total Files

86

Last publish

Collaborators

  • web-changlu