001.Vue3入门,使用模板语法功能

1、在App.vue中写入下面的代码

<template>
  <h3>模板语法</h3>
  <p>{{ msg }}</p>
  <p>{{ msg_cn }}</p>
</template>

<script>
export default {
  data() {
    return {
      msg: "Hello World!",
      msg_cn: "你好,世界"
    }
  }
}

</script>
<style>
</style>

2、效果图,如下所示:

 

posted @ 2024-08-10 14:31  像一棵海草海草海草  阅读(7)  评论(0编辑  收藏  举报