forked from opentiny/tiny-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:route code output (opentiny#937)
* feat: 调整路由出码结构 * feat: 添加RouterView组件出码测试 * feat:路由出码忽略文件夹 * fix:去掉注释 * feat: 调整路由出码递归方式 * fix: 调整格式 * fix:修复路由component出码为字符串问题
- Loading branch information
Showing
5 changed files
with
197 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<template> | ||
<component :is="tag" v-bind="$attrs"> | ||
<slot> | ||
<canvas-placeholder :placeholder="$attrs.placeholder"></canvas-placeholder> | ||
</slot> | ||
</component> | ||
</template> | ||
|
||
<script> | ||
import CanvasPlaceholder from './CanvasPlaceholder.vue' | ||
export default { | ||
components: { | ||
CanvasPlaceholder | ||
}, | ||
props: { | ||
tag: { | ||
type: String, | ||
default: 'div' | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters