vue3 script setup 问题小记

1、在页面中this指向会取消
需要在当前操作页面引入vue的getCurrentInstance方法
import { getCurrentInstance } from ‘vue’;
然后
const { proxy } = getCurrentInstance()
用 proxy代替this

2、vue3 和 vue2的全局变量是不一样的
// Vue 2.x
import Vue from ‘vue’;
Vue.prototype.$http = () => {}
// Vue 3.x

import { createApp } from ‘vue’;
import App from ‘./App.vue’;
const app = Vue.createApp(App)
app.config.globalProperties.$http = () => {}

这是在main.js中生名全局变量
如在组建内生名vue2 没有变化vue3 则需要
import { getCurrentInstance } from ‘vue’;
const { appContext } = getCurrentInstance()
appContext.config.globalProperties.$http = () => {}

3.vue3数据监听watch
在对象数据变化的时候 正常的写法 vue3是监听到对象变化的
如: import { watch, defineProps } from ‘vue’;
const props = defineProps({
//子组件接收父组件传递过来的值
info: Objec

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