# ui **Repository Path**: pi-ka-qiu/ui ## Basic Information - **Project Name**: ui - **Description**: ui for vue - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-25 - **Last Updated**: 2021-06-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 活动UI组件库 ### 安装 ``` tnpm install @tencent/component-ui ``` ```js import Vue from 'vue'; import componentUI from '@tencent/component-ui'; import '@tencent/component-ui/dist/component-ui.css'; Vue.use(componentUI) ``` ### 组件 - toast ```js this.$toasted('hello world'); this.$toasted({ text: 'hello world', time: 1000 }); ``` - loading ```js this.$loading('hello world'); this.$closeLoading(); ```