質問編集履歴

1

d

2020/11/17 10:03

投稿

tiitoi
tiitoi

スコア21960

test CHANGED
File without changes
test CHANGED
@@ -231,3 +231,55 @@
231
231
  </html>
232
232
 
233
233
  ```
234
+
235
+
236
+
237
+ ## 解決方法
238
+
239
+
240
+
241
+ 以下のように修正したところ、動作しました。
242
+
243
+
244
+
245
+ App.vue
246
+
247
+ ```
248
+
249
+ <template>
250
+
251
+ <div id="app">
252
+
253
+ <div>
254
+
255
+ <b-tabs content-class="mt-3">
256
+
257
+ <b-tab title="First" active><p>I'm the first tab</p></b-tab>
258
+
259
+ <b-tab title="Second"><p>I'm the second tab</p></b-tab>
260
+
261
+ <b-tab title="Disabled" disabled><p>I'm a disabled tab!</p></b-tab>
262
+
263
+ </b-tabs>
264
+
265
+ </div>
266
+
267
+ </div>
268
+
269
+ </template>
270
+
271
+
272
+
273
+ <script>
274
+
275
+ export default {
276
+
277
+ name: "App",
278
+
279
+ };
280
+
281
+ </script>
282
+
283
+
284
+
285
+ ```