mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
229 B
JavaScript
14 lines
229 B
JavaScript
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>;
|
|
}
|
|
});
|