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.

22 lines
380 B

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