feat(cli): support more features

This commit is contained in:
陈嘉涵
2019-11-19 16:25:05 +08:00
parent de8b36c6be
commit e23d2a7564
16 changed files with 1112 additions and 139 deletions
@@ -12,7 +12,7 @@ export default {
computed: {
demoName() {
const { meta } = this.$route;
const { meta } = this.$route || {};
if (meta && meta.name) {
return `demo-${decamelize(meta.name, '-')}`;
}