vue中的computed用法

<template> <div> <input v-model="first"></input> <input v-model="second"></input> <input v-model="action"></input> </div> </template>
<script> // import { set } from 'js-cookie'
export default { data() { return { 'first': 'tom', 'second': 'eat' // 'action': '' } }, computed: { action: { get() { return this.first + '-' + this.second }, set(val) { this.first = val.split('-')[0] this.second = val.split('-')[1] } } } }
</script>

相关文章

这篇文章我们将通过debug源码的方式来带你搞清楚defineAsync...
欧阳老老实实的更新自己的高质量vue源码文章,还被某2.6k st...
前言 在Vue3.5版本中响应式 Props 解构终于正式转正了,这个...
组合式 (Composition) API 的一大特点是“非常灵活”,但也因...
相信你最近应该看到了不少介绍Vue Vine的文章,这篇文章我们...
前言 在欧阳的上一篇 这应该是全网最详细的Vue3.5版本解读文...