view-list-list.vue 294 字节 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <script lang='tsx'> import { Component } from 'vue-property-decorator'; import ViewListBase from './view-list-list-base.vue'; // 基于 @CONTROL/列表/CONTROL.vue.ftl 生成 @Component({ components: { } }) export default class ViewList extends ViewListBase { } </script>