回答編集履歴

1

追記

2019/12/18 21:57

投稿

rubytomato
rubytomato

スコア1752

test CHANGED
@@ -228,6 +228,8 @@
228
228
 
229
229
  `v-navigation-drawer`コンポーネントに`app`プロパティを追加します。
230
230
 
231
+ また、`/`のルーティングを修正したので合わせてnameを修正しています。
232
+
231
233
 
232
234
 
233
235
  ```
@@ -248,6 +250,52 @@
248
250
 
249
251
  </template>
250
252
 
253
+
254
+
255
+ <script>
256
+
257
+ export default {
258
+
259
+ data() {
260
+
261
+ return {
262
+
263
+ items: [
264
+
265
+ { title: "練習", icon: "mdi-domain", link: { name: "about" } },
266
+
267
+ {
268
+
269
+ title: "検証",
270
+
271
+ icon: "mdi-message-text",
272
+
273
+ // Comment out
274
+
275
+ //link: { name: "app" }
276
+
277
+ // modify
278
+
279
+ link: { name: "count" }
280
+
281
+ }
282
+
283
+ ]
284
+
285
+ };
286
+
287
+ },
288
+
289
+
290
+
291
+ // 省略
292
+
293
+
294
+
295
+ };
296
+
297
+ </script>
298
+
251
299
  ```
252
300
 
253
301