web/buyer/src/App.vue
2021-12-30 11:16:08 +08:00

19 lines
216 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App',
};
</script>
<style lang="scss">
#app{
@include background_color($light_background_color);
}
</style>