chore(cli): add generator template

This commit is contained in:
陈嘉涵
2020-01-16 15:58:57 +08:00
parent dac60c8a37
commit 38001e59f0
24 changed files with 444 additions and 0 deletions
@@ -0,0 +1,14 @@
import { Cell } from 'vant';
export default {
name: 'my-cell',
props: {
title: String,
isLink: Boolean
},
render() {
return <Cell class="my-cell" title={this.title} isLink={this.isLink} />;
}
};