wails-template-vue/frontend/src/components/HelloWorld.vue
2021-09-08 09:59:24 +08:00

20 lines
281 B
Vue

<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>