goal-summary-view.vue 610 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template src="./goal-summary-view.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { GoalSummaryViewBase } from './goal-summary-view-base';
import view_dashboard from '@widgets/goal/goal-info-dashboard/goal-info-dashboard.vue';

/**
 * 目标数据看板视图视图
 *
 * @export
 * @class GoalSummaryView
 * @extends {GoalSummaryViewBase}
 */
@Component({
    components: {
        view_dashboard, 
    }
})
@VueLifeCycleProcessing()
export default class GoalSummaryView extends GoalSummaryViewBase { }
</script>