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> | |
<img :src="logoURL" :alt="logoCaption" width="200" height="200" /> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<span>You have {{ allTasks }} {{ allTasks > 1 ? 'tasks' : 'task' }} at the moment</span> | |
<div> | |
<input type="text" | |
v-model="newTask" |
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> | |
<img :src="logoURL" :alt="logoCaption" width="200" height="200" /> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<span>You have {{ allTasks }} {{ allTasks > 1 ? 'tasks' : 'task' }} at the moment</span> | |
<div> | |
<input type="text" | |
v-model="newTask" |
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> | |
<img :src="logoURL" :alt="logoCaption" width="200" height="200" /> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<span>You have {{ allTasks }} {{ allTasks > 1 ? 'tasks' : 'task' }} at the moment</span> | |
<div> | |
<input type="text" | |
v-model="newTask" |
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> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<span>You have {{ allTasks }} {{ allTasks > 1 ? 'tasks' : 'task' }} at the moment</span> | |
<div> | |
<input type="text" | |
v-model="newTask" | |
placeholder="Add a new task" |
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> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<div> | |
<input type="text" | |
v-model="newTask" | |
placeholder="Add a new task" | |
> |
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> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<div> | |
<input type="text" | |
v-model="newTask" | |
placeholder="Add a new task" | |
> |
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> | |
<h1>{{ title }}</h1> | |
<h2>Add a new task</h2> | |
<div> | |
<input type="text" | |
v-model="newTask" | |
placeholder="Add a new task" | |
> |
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> | |
<h1>{{ title }}</h1> | |
<ul> | |
<li v-for="task in tasks" :key="task.id"> | |
{{ task.id }}. {{ task.name }} | |
<div v-if="task.finished"> | |
<button>Delete task</button> | |
</div> |
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> | |
<h1>{{ title }}</h1> | |
<ul> | |
<li v-for="task in tasks" :key="task.id"> | |
{{task.id}}. {{ task.name }} | |
</li> | |
</ul> | |
</template> |
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
public async Task<ReturnType> DoSomethingAndReturnSomeValAsync() | |
{ | |
DoSomething(); | |
SomeType someObj = await DoSomethingElseAsync(); | |
return new ReturnType(someObj); | |
} | |
private async Task<SomeType> DoSomethingElseAsync(){ | |
... | |
} |
NewerOlder