<!-- Please make sure to provide a **minimal and self-contained reproduction** if you are reporting a bug. You can use the following jsfiddle template or make an example github repository. https://jsfiddle.net/ktsn/nm55jnjk/ For usage questions, please use the following resources: * Ask on the forum https://forum.vuejs.org * Ask on the chat room https://chat.vuejs.org * Look for / ask questions on Stack Overflow --> code example: ``` <template> <span>{{ test }}-{{ local }}</span> </template> <script> import { Component, Prop, Vue } from 'vue-property-decorator'; @Component export default class HelloWorld extends Vue { @Prop({default: ()=>({aaa: 456})}) msg; local = JSON.parse(JSON.stringify(this.msg)); get test() { return this.msg.aaa; } } </script> ``` this code is works in lower version. recent days,i want to upgrade my dependencies, but get problems with this code.