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

24 lines
374 B
Vue
Raw Normal View History

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>
<script>
export default {
name: "HelloWorld",
props: {
msg: String,
},
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
2021-09-09 05:16:10 +08:00
.hello-world {
height: 30px;
line-height: 30px;
margin: 16px auto;
text-align: center;
font-size: 26px;
2021-09-08 08:58:58 +08:00
}
</style>