ホームページ >ウェブフロントエンド >Vue.js >VueでのSwiperプラグインの使い方
Vue で Swiper プラグインを使用する方法: Swiper プラグインをインストールします: npm install --save swiper Swiper プラグインをインポートし、Vue.use(Swiper) をインストールします Swiper コンポーネントを作成し、Swiper インスタンスを作成します 自動再生、ループ再生、ページングなどの Swiper オプションを設定します 破棄コンポーネントが破棄されたときの Swiper インスタンス
<code class="bash">npm install --save swiper</code>
Vue メイン ファイルに Swiper を導入する:
<code class="javascript">// main.js import Vue from 'vue' import Swiper from 'swiper' Vue.use(Swiper)</code>
Vue コンポーネントで Swiper インスタンスを作成する:
<code class="html"><template> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide">Slide 1</div> <div class="swiper-slide">Slide 2</div> <div class="swiper-slide">Slide 3</div> </div> <div class="swiper-pagination"></div> </div> </template> <script> import { Swiper } from 'swiper' export default { mounted() { // 创建 Swiper 实例 new Swiper('.swiper-container', { // 设置 Swiper 选项 pagination: { el: '.swiper-pagination' } }) } } </script></code>
Swiper
オプション オブジェクトを使用して Swiper を構成する:
<code class="javascript">new Swiper('.swiper-container', { // 设置自动播放 autoplay: { delay: 2000 }, // 启用循环播放 loop: true, // 启用分页 pagination: { el: '.swiper-pagination' } })</code>
コンポーネントが破棄されたときに Swiper インスタンスを破棄する:
りー以上がVueでのSwiperプラグインの使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。