vue3学习之路

reactive, ref响应式数据

let num = reactive(0)// reactive中是简单数据类型,不会自动响应到页面中,除非有对象类型要响应才会跟着响应到页面
const obj = reactive({
  num: 0,
  name: 'malinshu'
})

const add = () => {
  num++;
  obj.num++;
  obj.name = obj.name + '--'
}

let activeNum = ref(0) // ref 对简单数据类型有响应到页面
const addNum = () => {
  activeNum.value++
}

const activeObj = ref({
  age: 18,
  name: '码林鼠'
})

const modifyObj = () => {
  activeObj.value.age++;
  activeObj.value.name = activeObj.value.name + '--'
}
{{ num }},{{ obj.num }},{{ obj.name }},{{ activeNum }},{{ activeObj.age }},{{ activeObj.name }}

computed计算属性

const newNum = computed(() => {
  return activeNum.value * 2
})
{{ newNum }}

watch监听属性,可以监听多个

import {watch, ref} from 'vue'

const num = ref(0)
const num2 = ref(0)

watch(num, (newV, oldV) => {
  console.log(newV,oldV)
})

const addNum = () => {
  num.value++
  num2.value = num2.value + 2
}


watch([num, num2], ([numNew, num2New], [numOld, num2Old]) => {
  console.log(numNew, num2New,numOld, num2Old)
})

生命周期函数

setup
onBeforeMount, onMounted
onBeforeUpdate, onUpdated
onBeforeUnmount, onUnmounted

父子通讯

father.vue

import Son from './Son.vue'
import {ref} from 'vue'
const num = ref(0)

const addNum = () => {
  num.value++
}

const getFromSon = () => {
  num.value = num.value + 10
}


  

son.vue

import { defineProps, defineEmits } from 'vue';

const props = defineProps({
    name: String,
    number: Number
})

const emit = defineEmits(['get-from-son'])

const sonClick = () => {
    emit('get-from-son', 'hello, i am son')// 通过触发事件来实现子传父
}
i am the fucking son of {{ name }},i am {{ number }} years old.

子组件向外暴露变量和方法

father.vue

const refObj = ref(null)// 通过ref来获取dom实例
const clickSonMethod = () => {
  refObj.value.outputMethod()
}

  
  

son.vue

const outputMethod = () => {
    console.log('暴露出的方法')
}

defineExpose({
    outputMethod
})

跨层级传递数据

grandfather.vue

const color = ref('pink')
provide('theme-color', color.value)
provide('provice-action', () => {
  console.log("hello grandfather")
})

grandson.vue

import {inject} from 'vue'
const color = inject('theme-color')
const hello = inject('provice-action')

defineOptions定义setup的平级属性,vue3.3以上

defineOptions({
	name:'componentName'
})

你可能感兴趣的:(vue.js,javascript,前端)