wails-template-vue/frontend/src/components/HelloWorld.vue
Misite Bao d8333fbb0a
feat: completely refactored and redesigned UI using typescript (#37)
* chore: update LICENSE

* refactor: refactor templates entirely using TypeScript

reslove: https://github.com/misitebao/wails-template-vue/issues/35

* feat: update template
2022-09-30 23:37:38 +08:00

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>