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

4 years ago
4 years ago
4 years ago
4 years ago
  1. <template>
  2. <img alt="Vue logo" src="./assets/logo.png" />
  3. <HelloWorld msg="vapara-vue3" />
  4. <br />
  5. {{ title }}
  6. <br />
  7. {{ version }}
  8. <br />
  9. </template>
  10. <script lang="ts">
  11. import HelloWorld from "./components/HelloWorld.vue";
  12. console.log(APP_TITLE);
  13. console.log(APP_VERSION);
  14. export default {
  15. name: "App",
  16. components: {
  17. HelloWorld,
  18. },
  19. data() {
  20. return {
  21. title: APP_TITLE,
  22. version: APP_VERSION,
  23. };
  24. },
  25. };
  26. </script>