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
| type City { | |
| id: ID! | |
| name: String! | |
| country: String! | |
| locations: [Location] | |
| } | |
| type Location { | |
| id: ID! | |
| cityId: ID! |
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> | |
| <div class="tasks"> | |
| <h1>Task Manager</h1> | |
| <input v-model="taskname" placeholder="Task Name" class="input"> | |
| <button @click="createTask()" class="taskButton">Create Task</button> | |
| <ul> | |
| <li | |
| class="task" | |
| v-for="(task, index) in tasks" :key="index" | |
| > |
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> | |
| <div id="app"> | |
| <div v-if="!signedIn"> | |
| <amplify-authenticator></amplify-authenticator> | |
| </div> | |
| <div v-if="signedIn"> | |
| <amplify-sign-out class="signout" v-bind:signOutOptions="signOutOptions"></amplify-sign-out> | |
| <img alt="Vue logo" src="./assets/logo.png"> | |
| <HelloWorld msg="Welcome to Your Vue.js App"/> | |
| <!-- <button v-on:click="signOut">Sign Out</button> --> |