Files
frost-navigation/src/views/ToolboxView/ToolboxView.vue

19 lines
345 B
Vue
Raw Normal View History

2024-08-26 14:07:57 +08:00
<template>
<div class="toolbox-view flex-col">
<div class="app-view-header">
<span>{{ TOOLBOX_MODULE_TITLE }}</span>
</div>
<div class="app-view-content is-transparent">
</div>
</div>
2024-08-26 14:07:57 +08:00
</template>
<script setup>
import {
TOOLBOX_MODULE_TITLE,
} from '@/config/modules';
2024-08-26 14:07:57 +08:00
</script>
<style lang="less" scoped>
</style>