Skip to content

Commit 9a34219

Browse files
authored
Merge pull request bootstrap-vue#30 from noolan/patch-1
$get has been removed from Vue 2.0
2 parents f0d652a + 3d18384 commit 9a34219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/tab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
}
3333
},
3434
mounted() {
35-
const items = this.$parent.$get('items');
35+
const items = this.$parent.items;
3636
items.push({id: this.id, title: this.title, active: this.active, disabled: this.disabled})
3737
},
3838
}

0 commit comments

Comments
 (0)