Skip to content

Instantly share code, notes, and snippets.

View Aybee5's full-sized avatar
🎯
Focusing

Ibrahim Abdullahi Aliyu Aybee5

🎯
Focusing
View GitHub Profile
@Aybee5
Aybee5 / App.vue
Last active October 14, 2019 18:08 — forked from spemer/App.vue
App.vue -> axios
<template lang="pug">
<div id="app">
<div
v-for="user in users"
:key="users.id"
>
<h1> {{ user.name }} </h1>
<p> {{ user.email }} </p>
<button> (@click="fetchUsers") Click me! </button>
</div>