2019-08-06から1日間の記事一覧

オブジェクトベース設計

WEB+DB PRESS(vol.107) 速攻改善UIデザイン 多くの人が陥りがちなタスクベースの設計でなく、オブジェクトベースの設計の方が画面数も操作性も上がるという話。 自分が経験した中でも、まず何をやるべきかが要件定義に上がってくるような、業務アプリを作る…

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…