logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue v-html 字符串 动态 渲染模版 v-html 动态组件 添加事件

// 1,首先在 webpack 配置中alias: {'vue$': 'vue/dist/vue.esm.js' // 内部为正则表达式 vue结尾的}// 2 在main 中// new Vue({// router,// store,// render: h => h(App)// }).$mount("#app")// 3 动态组件demo...

vue 中的 computed 的 set

先看代码computed: {fullName: {// getterget: function() {return this.firstName + ' ' + this.lastName},// setterset: function(newValue) {console.log('9999');var names = newValue.split(' ')this.firstName = n

到底了