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