
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Nuxtでvue-carouselを使用していたら'ReferenceError: window is not defined'が出たお話 - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Nuxtでvue-carouselを使用していたら'ReferenceError: window is not defined'が出たお話 - Qiita
<template> <div class="container"> <carousel :navigation-enabled="true" :per-page="1"> <slide v-f... <template> <div class="container"> <carousel :navigation-enabled="true" :per-page="1"> <slide v-for="(url, key) in images" :key="key"> <div class="product-img"> <img class="product-card-img" :src="url" /> </div> </slide> </carousel> </div> </template> <script> import { Carousel, Slide } from 'vue-carousel' export default { layout: 'client/simple', components: { Carousel, Slide }, data() { return {