vue-apps/com.actionsoft.apps.kms.mobile/App.vue
2025-07-07 13:55:22 +08:00

22 lines
330 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
overflow: hidden;
}
</style>