<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>