Set up NodeJS project

This commit is contained in:
2026-05-06 17:02:34 +02:00
parent 87c0e031f1
commit 703c4c1632
10 changed files with 1081 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
<script setup>
</script>
<template>
</template>
View File
View File
+4
View File
@@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
View File