Add Vue.js with TypeScript support

This commit is contained in:
2024-09-03 13:37:46 +02:00
parent 002493c0c6
commit e607a09631
10 changed files with 1221 additions and 0 deletions

6
software/src/App.vue Normal file
View File

@@ -0,0 +1,6 @@
<script setup>
</script>
<template>
HackMyCart
</template>

4
software/src/main.ts Normal file
View File

@@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')