|
@ -11,16 +11,15 @@ |
|
|
|
|
|
|
|
|
<script lang="ts"> |
|
|
<script lang="ts"> |
|
|
/* eslint-disable no-undef */ |
|
|
/* eslint-disable no-undef */ |
|
|
|
|
|
|
|
|
import HelloWorld from './components/HelloWorld.vue' |
|
|
import HelloWorld from './components/HelloWorld.vue' |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: 'App', |
|
|
|
|
|
components: { |
|
|
components: { |
|
|
HelloWorld |
|
|
HelloWorld |
|
|
}, |
|
|
}, |
|
|
setup() { |
|
|
setup() { |
|
|
return { |
|
|
return { |
|
|
title: APP_TITLE, |
|
|
|
|
|
|
|
|
title: APP_TITLE, //Rk: note the 'eslint-disable no-undef' comment above |
|
|
version: APP_VERSION, |
|
|
version: APP_VERSION, |
|
|
origin: APP_ORIGIN |
|
|
origin: APP_ORIGIN |
|
|
} |
|
|
} |
|
|