Skip to content

快速开始

安装大屏库

bash
pnpm install @vue3-simple-bui/screen

使用大屏库

大屏组件库提供了两种使用方式:

方式一:按需加载

javascript
import { LScaleScreen } from '@vue3-simple-bui/screen';

方式二:全局安装

javascript
import Screen from '@vue3-simple-bui/screen';

const app = createApp(App);
app.use(Screen);

大屏库组件

大屏库现阶段提供的高频常用组件如下,后续将会继续增加:

  • LScaleScreen:大屏放缩组件
  • LCountTo:数字滚动组件
  • LSeamlessScroll:列表滚动组件

基于 MIT 许可发布