# macos **Repository Path**: xin-yue-qin/macos ## Basic Information - **Project Name**: macos - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-29 - **Last Updated**: 2021-09-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bigsur-vue ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn serve ``` ### Compiles and minifies for production ``` yarn build ``` ### Lints and fixes files ``` yarn lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ### ex-ui公共组件 无需单独import引入,直接全局注册即使用。 #### ExDialog弹窗 使用样例: ```
这是一段信息
``` - title:弹窗标题 - dialogVisible: 弹窗是否显示(true显示;fasle隐藏) - width:弹窗的宽度(支持宽度所有单位:px、%、vh、rem...) #### Notification提示 使用样例: ``` this.$notify({ title: '提示', message: '请输入内容', type: 'warning', position: 'top-right', duration: 0 }) ``` - title:提示标题 - message:提示信息 - type:类型(success成功, warning警告, info消息, error错误) - position:弹出位置(top-right右上、top-left左上、bottom-right右下、bottom-left左下) - duration:显示时间, 毫秒。设为 0 则不会自动关闭(不配置该参数,默认4500毫秒自动关闭)