oil-station/fuintCashier/src/renderer/App.vue
2023-10-09 11:12:49 +08:00

18 lines
267 B
Vue

<template>
<div id="app">
<c-header></c-header>
<transition name="fade" mode="out-in">
<router-view></router-view>
</transition>
</div>
</template>
<script setup>
import CHeader from "./components/title";
</script>
<style>
/* CSS */
</style>