We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
The problem is in Vue cli this case will logloose reactivity and can not destructuring from the props, but in Vite this way is not necessary...
loose reactivity
setup(props) { const { user } = props; const rename = () => (user.name = "Root"); return { user, rename, }; }