import { defineNuxtPlugin } from '#app' // @ts-ignore import WOW from 'wow.js' export default defineNuxtPlugin((nuxtApp) => { new WOW({ //可以添加自定义内容 animateClass: 'animate__animated', boxClass: 'wow', offset: 0, mobile: true, live: false, scrollContainer: null, resetAnimation: true, }).init() })