summaryrefslogtreecommitdiff
path: root/ATRI/plugins/manege/atri-manege/src/views/Home.vue
blob: 636303a678d43b9fdc7ce6fc30ba5799302e66a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <hello-world />
</template>

<script>
  import HelloWorld from '../components/HelloWorld'

  export default {
    name: 'Home',

    components: {
      HelloWorld,
    },
  }
</script>