feat: client init

This commit is contained in:
tim
2025-07-02 21:03:16 +08:00
parent 6e9cd7f450
commit 8c21b39d78
11 changed files with 12328 additions and 0 deletions

26
open-isle-cli/src/App.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>