11-mes-new/src/App.vue

20 lines
222 B
Vue
Raw Normal View History

2022-11-07 08:45:49 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
mounted() {
}
}
</script>
<style lang="scss" scoped>
#app {
background-color: #f2f4f9;
}
</style>