You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
330 B
18 lines
330 B
<template> |
|
<div class="home"> |
|
<img alt="Vue logo" src="../assets/logo.png" /> |
|
<HelloWorld msg="Welcome to Your Vue.js App" /> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
// @ is an alias to /src |
|
import HelloWorld from '@/components/HelloWorld.vue'; |
|
|
|
export default { |
|
name: 'home', |
|
components: { |
|
HelloWorld, |
|
}, |
|
}; |
|
</script>
|
|
|