<template> <div class="home"> <TestLink /> </div> </template> <script> // @ is an alias to /src import TestLink from '@/components/testLink/testLink.vue' export default { name: 'IndexView', components: { TestLink }, data() { return { } }, } </script>