VUE3-初识setup(2)

<template>
  <h1>一个人的信息h1>
  <h2>姓名:{{ name }}h2>
  <h2>年龄:{{ age }}h2>
  <h2>性别:{{ sex }}h2>
  <button @click="sayHello">说话(Vue3所配置的——sayHello)button>
  <br>
  <br>
  <button @click="sayWelcome">说话(Vue2所配置的——sayWelcome)button>
  <br>
  <br>
  <button @click="test1">测试一下在Vue2的配置中去读取Vue3中的数据、方法button>
  <br>
  <br>
  <button @click="test2">测试一下在Vue3的setup配置中去读取Vue2中的数据、方法button>
template>

<script>
// import {h} from 'vue'

export default {
  name: 'App',
  data() {
    return {
      sex: '男',
    }
  },
  methods: {
    sayWelcome() {
      alert('欢迎来到尚硅谷学习')
    },
    test1() {
      console.log(this.sex) // 男
      console.log(this.name) // 张三
      console.log(this.sayHello) // ƒ sayHello() {...}
    }
  },
  // 此处只是测试一下setup,暂时不考虑响应式的问题
  setup() {
    // 数据
    let name = '张三'
    let age = 18

    // 方法
    function sayHello() {
      alert(`我叫${name},我${age}岁了,你好啊!`)
    }

    function test2() {
      console.log(name) // 张三
      console.log(this.sex) // undefined
      console.log(this.sayWelcome) // undefined
    }

    // 1.返回一个对象(常用)
    return {
      name,
      age,
      sayHello,
      test2
    }

    // 2.返回一个函数(渲染函数)
    // return () => h('h1', '尚硅谷')
  }
}
script>

你可能感兴趣的:(Vue学习笔记,vue.js)