You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
311 B
15 lines
311 B
![]()
10 months ago
|
<template>
|
||
|
<div>
|
||
|
<SchoolSettle v-if="appStore.getAppInfo?.instanceType == 1" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup name="Settle">
|
||
|
import { useAppStore } from '@/store/modules/app'
|
||
|
import SchoolSettle from './SchoolSettle.vue'
|
||
|
|
||
|
const appStore = useAppStore()
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|