fixes for dev mode
This commit is contained in:
parent
f9739f7d24
commit
fc8c71e1c7
4 changed files with 17 additions and 3 deletions
|
@ -30,7 +30,8 @@
|
|||
props: ["recom"],
|
||||
data: function () {
|
||||
return {
|
||||
isVisible: true
|
||||
isVisible: true,
|
||||
app: this.$root
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -32,6 +32,11 @@
|
|||
<script>
|
||||
Vue.component('cider-applecurator', {
|
||||
template: "#cider-applecurator",
|
||||
props: ["data"]
|
||||
props: ["data"],
|
||||
data: function() {
|
||||
return {
|
||||
app: this.$root
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
|
@ -72,7 +72,8 @@
|
|||
props: ['data'],
|
||||
data: function () {
|
||||
return {
|
||||
topSongsExpanded: false
|
||||
topSongsExpanded: false,
|
||||
app: this.$root
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue