mirror of
https://github.com/misitebao/wails-template-vue
synced 2025-05-11 01:28:02 +08:00
* chore: update LICENSE * refactor: refactor templates entirely using TypeScript reslove: https://github.com/misitebao/wails-template-vue/issues/35 * feat: update template
20 lines
283 B
Vue
20 lines
283 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
msg: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="hello-world" v-text="msg"></div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.hello-world {
|
|
height: 76px;
|
|
line-height: 38px;
|
|
margin: 16px 150px;
|
|
text-align: center;
|
|
font-size: 26px;
|
|
}
|
|
</style>
|