rt-sim-training-client/src/views/temporary/index.vue

23 lines
347 B
Vue
Raw Normal View History

2022-10-11 09:55:01 +08:00
<template>
<div class="temporary">
<span>功能实现中......</span>
</div>
</template>
<script>
export default {
name: 'Temporary',
components: {},
data() {
return {};
}
};
</script>
<style lang="scss" scoped>
.temporary {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
</style>