UNPKG

lulouis-vant

Version:

Lightweight Mobile UI Components built on Vue

14 lines (10 loc) 242 B
import { use, isDef } from '../utils'; const [sfc, bem] = use('info'); export default sfc({ props: { info: [String, Number] }, render(h) { return isDef(this.info) && <div class={bem()}>{this.info}</div>; } });