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.

Home.vue 278B

1234567891011121314151617
  1. <template>
  2. <div class="home">
  3. <img alt="Vue logo" src="../assets/logo.png">
  4. </div>
  5. </template>
  6. <script>
  7. // @ is an alias to /src
  8. // import HelloWorld from '@/components/HelloWorld.vue'
  9. export default {
  10. name: 'Home',
  11. components: {
  12. // HelloWorld
  13. }
  14. }
  15. </script>