mirror of
https://github.com/chillzhuang/Saber.git
synced 2025-04-20 03:49:21 +08:00
27 lines
306 B
Vue
27 lines
306 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "app",
|
|
data() {
|
|
return {};
|
|
},
|
|
watch: {},
|
|
created() {
|
|
},
|
|
methods: {},
|
|
computed: {}
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|