19 lines
247 B
Vue
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>
|