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.
27 lines
458 B
27 lines
458 B
<template>
|
|
<img alt="Vue logo" src="./assets/logo.png" />
|
|
<HelloWorld msg="vapara-vue3" />
|
|
<br />
|
|
{{ title }}
|
|
<br />
|
|
{{ version }}
|
|
<br />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import HelloWorld from "./components/HelloWorld.vue";
|
|
console.log(APP_TITLE);
|
|
console.log(APP_VERSION);
|
|
export default {
|
|
name: "App",
|
|
components: {
|
|
HelloWorld,
|
|
},
|
|
data() {
|
|
return {
|
|
title: APP_TITLE,
|
|
version: APP_VERSION,
|
|
};
|
|
},
|
|
};
|
|
</script>
|