view-schedule-portlet.vue 539 字节
<template src="./view-schedule-portlet.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { View_SchedulePortletBase } from './view-schedule-portlet-base';
 

/**
 * dashboard_sysportlet2部件
 *
 * @export
 * @class View_SchedulePortlet
 * @extends {View_SchedulePortletBase}
 */
@Component({
    components: {
         
    }
})
@VueLifeCycleProcessing()
export default class View_SchedulePortlet extends View_SchedulePortletBase { }
</script>