Files
pig-farm-controller-fe/src/App.vue

18 lines
171 B
Vue
Raw Normal View History

2025-09-19 14:25:20 +08:00
<template>
<div id="app">
2025-09-19 14:38:47 +08:00
<router-view />
2025-09-19 14:25:20 +08:00
</div>
</template>
<script>
export default {
name: 'App'
};
</script>
2025-09-19 14:38:47 +08:00
<style>
#app {
min-height: 100vh;
2025-09-19 14:25:20 +08:00
}
2025-09-19 14:38:47 +08:00
</style>