wails-template-vue/frontend/src/components/HelloWorld.vue

20 lines
283 B
Vue
Raw Normal View History

<script setup lang="ts">
defineProps<{
msg: string;
}>();
</script>
2021-09-08 08:58:58 +08:00
<template>
2021-09-09 05:16:10 +08:00
<div class="hello-world" v-text="msg"></div>
2021-09-08 08:58:58 +08:00
</template>
<style scoped>
2021-09-09 05:16:10 +08:00
.hello-world {
height: 76px;
line-height: 38px;
margin: 16px 150px;
2021-09-09 05:16:10 +08:00
text-align: center;
font-size: 26px;
2021-09-08 08:58:58 +08:00
}
</style>