axios
#102
Replies: 1 comment
-
In the same way as in any application or page. Example: import { createApp } from "https://unpkg.com/petite-vue?module";
createApp({
image: "",
loadImage() {
axios
.get("https://randomfox.ca/floof/")
.then(({ data }) => (this.image = data.image));
}
}).mount("main"); Live example: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how can i use axios in petiteVue??
Beta Was this translation helpful? Give feedback.
All reactions