22 lines
247 B
Vue
22 lines
247 B
Vue
|
<template>
|
||
|
<section class="index">
|
||
|
index
|
||
|
</section>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'HomePage',
|
||
|
data() {
|
||
|
return {
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.index {
|
||
|
background-color: yellow;
|
||
|
}
|
||
|
</style>
|