Skip to content

快速开始

安装

bash
npm i x-anything --save

开始使用

全局使用

js
// 引入所有组件
import XAnything from 'x-anything'
// 引入样式
import 'x-anything/dist/index.css'

import App from './App.vue'
// 全局使用
createApp(App).use(XAnything).mount('#app')
vue
<template>
  <x-button>我是 Button</x-button>
</template>

单个导入

x-anything 提供了基于 ES Module 的开箱即用的 Tree Shaking 功能。

vue
<template>
  <x-button>我是 Button</x-button>
</template>
<script>
import { XButton } from 'x-anything'
export default {
  components: { XButton },
}
</script>

亮点

Details
  • Vite + Vitest + Vitepress 工具链
  • monorepo 分包管理
  • github actions 实现 CI/CD 自动化部署
  • 大模型辅助:使用大模型辅助完成需求分析,设计思路,快速实现组件,提升开发效率。
  • 当然,也会展示 发布“开箱即用” 的 npm 包