App.vue.ftl 541 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4
<#ibiztemplate>
TARGET=PSSYSAPP
</#ibiztemplate>
<template>
KK's avatar
KK committed
5
	<ion-app id="app">
ibizdev's avatar
ibizdev committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
		<#if app.getAllRefPSAppViews()??>
		<#list app.getAllRefPSAppViews() as view>
		<#if view.getViewType() == "APPSTARTVIEW" >
        <${srffilepath2(view.getCodeName())}></${srffilepath2(view.getCodeName())}>
        </#if>
		</#list>
		</#if>
		<keep-alive>
			<router-view/>
		</keep-alive>
	</ion-app>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";

@Component({})
export default class App extends Vue { }
</script>