import {mapState} from 'vuex'
export default {
data(){
return {
oldData: 0
}
}
computed: mapState({
count: state => state.count,
newData(){
return this.oldData + 1;
}
})
}
这样子写吗?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号