Answers for "aos initial configuration vue"

0

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");
Posted by: Guest on November-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language