mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-19 01:15:53 +08:00
19 lines
216 B
Vue
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>
|