abstract-info-dashboard.vue 856 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<template src="./abstract-info-dashboard.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { AbstractInfoDashboardBase } from './abstract-info-dashboard-base';
import view_dashboard_sysportlet2 from '@widgets/activity-pointer/list-by-parent-key-portlet/list-by-parent-key-portlet.vue';
import view_dashboard_sysportlet1 from '@widgets/competitor/view-comp-abstract-portlet/view-comp-abstract-portlet.vue';
 

/**
 * dashboard部件
 *
 * @export
 * @class AbstractInfoDashboard
 * @extends {AbstractInfoDashboardBase}
 */
@Component({
    components: {
        view_dashboard_sysportlet2, 
        view_dashboard_sysportlet1, 
         
    }
})
@VueLifeCycleProcessing()
export default class AbstractInfoDashboard extends AbstractInfoDashboardBase { }
</script>