oil-station/fuintCashier/src/renderer/App.vue

18 lines
267 B
Vue
Raw Normal View History

2023-10-09 11:06:01 +08:00
<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>