Skip to content

Commit

Permalink
yarn run lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suusan2go committed Sep 12, 2020
1 parent 0a74eff commit 6c6b6a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/DraggableTreeview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export default Vue.extend({
},
expandIcon: {
type: String,
default: "mdi-menu-down"
}
default: "mdi-menu-down",
},
},
data() {
return {
Expand Down
8 changes: 4 additions & 4 deletions src/DraggableTreeviewNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
{
'v-treeview-node__toggle--open': open,
'theme--dark': isDark,
'theme--light': !isDark
'theme--light': !isDark,
},
expandIcon
expandIcon,
]"
/>
<slot name="prepend" v-bind="{ item: value, open }" />
Expand Down Expand Up @@ -102,8 +102,8 @@ export default Vue.extend({
default: null,
},
expandIcon: {
type: String,
default: "mdi-menu-down"
type: String,
default: "mdi-menu-down",
},
},
data() {
Expand Down

0 comments on commit 6c6b6a6

Please sign in to comment.