2021-04-19 19:47:17 +08:00

19 lines
247 B
Vue

<template>
<div class="home">home</div>
</template>
<script>
import { defineComponent } from 'vue'
export default defineComponent({
name: 'home',
setup() {},
})
</script>
<style lang="scss" scoped>
.home {
color: $mainColor;
}
</style>