Demo6.vue 404 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <h1>Demo6--标签Ref</h1>
  4. <h3 ref="weather">今天天气真好</h3>
  5. <button @click="showMain">输出</button>
  6. </div>
  7. </template>
  8. <script lang="ts" setup>
  9. import {ref,reactive} from "vue"
  10. let weather = ref(111);
  11. console.log(weather.value,'初始化',weather)
  12. function showMain() {
  13. console.log(weather.value,'输出')
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>