Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Laravel 中,我们有访问器,允许我们从一个或多个字段中获取操作数据。
Vuex 中是否有等价物?具体来说,我正在使用一个组件,该组件从 Vuex 获取一个集合,并且对于每个项目,显示{{ item.title }}.
{{ item.title }}
但是,{{ item.title }}当我从 Vuex 获取数据时,它不存在并且应该在一个集合的基础上派生。所以它可能来自{{ item.name }}或{{ item.postcode }}或其他。
{{ item.name }}
{{ item.postcode }}
有什么办法可以做到这一点吗?