This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |