Vue.js

Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders

Nuxt.js 2.8.1 TypeScript 3.5.3 Vuetify ドロワーのコンポーネントを追加した際に上記エラー。 vuetifyjs.com layout.vue(親) <template> <v-app> <v-toolbar> <v-toolbar-side-icon @click.stop="toggleDrawer" /> </v-toolbar> <Sidebar :drawer="drawer" /> </v-app> </template> <script lang="ts"> import { Component, Vue } from 'vue-propert…