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

20 lines
281 B
Vue
Raw Normal View History

2021-09-08 08:58:58 +08:00
<template>
<div class="hello" v-text="msg"></div>
</template>
<script>
export default {
name: "HelloWorld",
props: {
msg: String,
},
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.hello {
margin: 10px 0;
}
</style>