Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export default defineComponent({
'ft-toggle-switch': FtToggleSwitch,
'ft-flex-box': FtFlexBox
},
data: function () {
return {}
},
computed: {
externalPlayerNames: function () {
const fallbackNames = this.$store.getters.getExternalPlayerNames
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/ft-input/ft-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default defineComponent({
}
}
},
mounted: function () {
created: function () {
this.id = this._uid
this.inputData = this.value
this.updateVisibleDataList()
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/ft-slider/ft-slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineComponent({
this.currentValue = this.defaultValue
}
},
mounted: function () {
created: function () {
this.id = this._uid
this.currentValue = this.defaultValue
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default defineComponent({
this.currentValue = this.defaultValue
}
},
mounted: function () {
created: function () {
this.id = this._uid
this.currentValue = this.defaultValue
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default defineComponent({
]
}
},
mounted: function () {
created: function () {
this.setCurrentInvidiousInstanceBounce =
debounce(this.setCurrentInvidiousInstance, 500)
},
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/theme-settings/theme-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default defineComponent({
return this.baseTheme !== 'hotPink'
}
},
mounted: function () {
created: function () {
this.disableSmoothScrollingToggleValue = this.disableSmoothScrolling
},
methods: {
Expand Down