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.
 
 
 
 

29 lines
535 B

<template>
<img alt="Vue logo" src="./assets/logo.png" width="150" />
<HelloWorld :msg="title" />
<footer style="margin-top: 2em">
AGPLv3 :
<a :href="origin" alt="origin">
{{ version }}
</a>
</footer>
</template>
<script lang="ts">
/* eslint-disable no-undef */
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
},
setup() {
return {
title: APP_TITLE,
version: APP_VERSION,
origin: APP_ORIGIN
}
}
}
</script>