lilishop-ui/buyer/src/App.vue

19 lines
216 B
Vue
Raw Normal View History

2021-05-13 10:56:04 +08:00
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
2021-05-13 10:56:04 +08:00
export default {
name: 'App',
2021-05-13 10:56:04 +08:00
};
</script>
<style lang="scss">
#app{
@include background_color($light_background_color);
}
</style>