Add Vue.js with TypeScript support
This commit is contained in:
6
software/src/App.vue
Normal file
6
software/src/App.vue
Normal file
@@ -0,0 +1,6 @@
|
||||
<script setup>
|
||||
</script>
|
||||
|
||||
<template>
|
||||
HackMyCart
|
||||
</template>
|
||||
4
software/src/main.ts
Normal file
4
software/src/main.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
Reference in New Issue
Block a user