rentease-web/src/App.vue

27 lines
359 B
Vue
Raw Normal View History

2026-03-02 12:29:23 +00:00
<template>
<div id="app">
2026-03-08 16:31:38 +00:00
<router-view />
2026-03-02 12:29:23 +00:00
</div>
</template>
<script>
export default {
2026-03-08 16:31:38 +00:00
name: 'App'
2026-03-02 12:29:23 +00:00
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
2026-03-05 16:42:43 +00:00
</style>