忍冬 - 基于Vue的移动端通用UI组件库
yarn serve
yarn build
yarn dist
yarn lint
yarn up
yarn iconfont
loni-create --inherit
loni-list
import Vue from "vue"; import { Button, Cell, CellItem } from "loni"; Vue.use(Button); Vue.use(Cell); Vue.use(CellItem);
全局配置的属性比组件上传入的属性优先级低,有些组件的部分属性不支持全局配置
import { config } from "loni"; config.button.background = "linear-gradient(-90deg, #f74c52, #dc3b40)"; config.dialog.title = "提示";