weng-common-ui
v0.0.6
Published
this is cell component
Downloads
1
Readme
weng-common-ui
Installation
Installation
npm i weng-common-ui -S
Usage
Import all components.
import 'weng-common-ui/lib/common-ui.css';
import WengCommonUI from 'weng-common-ui';
Vue.use(WengCommonUI);
or import specified component.
import 'weng-common-ui/lib/common-ui.css';
import {Cell} from 'weng-common-ui';
Demo
<template>
<cell isLink
content="提现账号管理"
:label="userInfo.alipay?'已绑定':'未绑定'"
:labelClass="userInfo.alipay ? '' : 'color-red'"
@click.native="certToWithdrawal"
/>
</template>