This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
node-fftcg/frontend/src/views/Home.vue

15 lines
193 B
Vue
Raw Normal View History

2019-02-22 19:23:42 +00:00
<template>
2019-02-22 20:10:17 +00:00
<HelloWorld />
2019-02-22 19:23:42 +00:00
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
export default {
components: {
HelloWorld
}
}
</script>