marc-leopold/pages/index.vue

22 lines
247 B
Vue
Raw Normal View History

2019-01-02 21:11:40 +00:00
<template>
<section class="index">
index
</section>
</template>
<script>
export default {
name: 'HomePage',
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
.index {
background-color: yellow;
}
</style>