mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
Vue
19 lines
424 B
Vue
<template>
|
|
<div class="home">
|
|
<img alt="Vue logo" src="../assets/logo.png">
|
|
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator'
|
|
import HelloWorld from '@/components/HelloWorld.vue' // @ is an alias to /src
|
|
|
|
@Component({
|
|
components: {
|
|
HelloWorld
|
|
}
|
|
})
|
|
export default class Home extends Vue {}
|
|
</script>
|