Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

aos initial configuration vue

//Initialize AOS and pass the options needed in src/main.js

import AOS from "aos";
import "aos/dist/aos.css";

new Vue({
  created() {
    AOS.init({ disable: "phone" });
  },
  router,
  render: h => h(App)
}).$mount("#app");
Source by yasminzy.com #
 
PREVIOUS NEXT
Tagged: #aos #initial #configuration #vue
ADD COMMENT
Topic
Name
2+6 =