view-head-portlet.vue 511 字节
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="./view-head-portlet.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { View_HeadPortletBase } from './view-head-portlet-base';
 

/**
 * dashboard_sysportlet1部件
 *
 * @export
 * @class View_HeadPortlet
 * @extends {View_HeadPortletBase}
 */
@Component({
    components: {
         
    }
})
@VueLifeCycleProcessing()
export default class View_HeadPortlet extends View_HeadPortletBase { }
</script>