aos initial configuration vue

Solutions on MaxInterview for aos initial configuration vue by the best coders in the world

showing results for - "aos initial configuration vue"
Lya
18 Oct 2020
1//Initialize AOS and pass the options needed in src/main.js
2
3import AOS from "aos";
4import "aos/dist/aos.css";
5
6new Vue({
7  created() {
8    AOS.init({ disable: "phone" });
9  },
10  router,
11  render: h => h(App)
12}).$mount("#app");
13