23 lines
347 B
Vue
23 lines
347 B
Vue
|
<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>
|