<template src="./goal-info-dashboard.html"/> <script lang='tsx'> import { Component } from 'vue-property-decorator'; import { VueLifeCycleProcessing } from '@/studio-core'; import { GoalInfoDashboardBase } from './goal-info-dashboard-base'; import view_dashboard_sysportlet1 from '@widgets/goal/view-goal-info-portlet/view-goal-info-portlet.vue'; /** * dashboard部件 * * @export * @class GoalInfoDashboard * @extends {GoalInfoDashboardBase} */ @Component({ components: { view_dashboard_sysportlet1, } }) @VueLifeCycleProcessing() export default class GoalInfoDashboard extends GoalInfoDashboardBase { } </script>