Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:42 +09:00
commit 5522c1f096
14 changed files with 132 additions and 0 deletions

15
src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
import { ref } from 'vue'
const msg = ref<string>('Hello Vue + TypeScript!')
</script>
<template>
<div>
<h1>{{ msg }}</h1>
<p>Edit <code>src/App.vue</code> to get started.</p>
</div>
</template>
<style scoped>
h1 { color: #42b883; }
</style>

6
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}

4
src/main.ts Normal file
View File

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