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");
