mirror of
https://github.com/misitebao/wails-template-vue
synced 2025-05-11 17:48:01 +08:00
20 lines
281 B
Vue
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>
|