Skip to content

Commit

Permalink
docs(Transitions): update todo list example
Browse files Browse the repository at this point in the history
resolves #10548
  • Loading branch information
MajesticPotatoe committed Feb 13, 2020
1 parent 66e1a03 commit 0af7cc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/docs/src/examples/transitions/todo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
class="my-1"
align="center"
>
<strong class="mx-4 info--text text--darken-3">
<strong class="mx-4 info--text text--darken-2">
Remaining: {{ remainingTasks }}
</strong>

<v-divider vertical></v-divider>

<strong class="mx-4 black--text">
<strong class="mx-4 success--text text--darken-2">
Completed: {{ completedTasks }}
</strong>

Expand Down Expand Up @@ -67,11 +67,11 @@
<v-list-item-action>
<v-checkbox
v-model="task.done"
color="info darken-3"
:color="task.done && 'grey' || 'primary'"
>
<template v-slot:label>
<div
:class="task.done && 'grey--text' || 'text--primary'"
:class="task.done && 'grey--text' || 'primary--text'"
class="ml-4"
v-text="task.text"
></div>
Expand Down

0 comments on commit 0af7cc2

Please sign in to comment.