donal
2018-04-26 56c750e171b766e44df7201f719ce091d415ecec
Linting exercise
1 files modified
3 ■■■■ changed files
src/components/TodoItem.vue 3 ●●●● patch | view | raw | blame | history
src/components/TodoItem.vue
@@ -4,7 +4,7 @@
    <md-list-item
      @click="markCompleted()"
      >
      <checkbox v-model="todoItem.completed" class="checkbox-completed"/>
      <checkbox v-model="todoItem.completed" class="checkbox-completed"/>
        <span class="md-list-item-text" :class="{'strike-through': todoItem.completed}">{{ todoItem.title }}</span>
      </md-list-item>
@@ -18,6 +18,7 @@
import { Checkbox, Radio } from "vue-checkbox-radio";
Vue.component("checkbox", Checkbox);
Vue.component("radio", Radio);
let biscuits;
export default {
  name: "TodoItem",