You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
383 B

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()
})