FreeTube/src/renderer/views/ProfileSettings/ProfileSettings.js

22 lines
577 B
JavaScript

import Vue from 'vue'
import FtCard from '../../components/ft-card/ft-card.vue'
import FtFlexBox from '../../components/ft-flex-box/ft-flex-box.vue'
import FtProfileBubble from '../../components/ft-profile-bubble/ft-profile-bubble.vue'
export default Vue.extend({
name: 'ProfileSettings',
components: {
'ft-card': FtCard,
'ft-flex-box': FtFlexBox,
'ft-profile-bubble': FtProfileBubble
},
computed: {
profileList: function () {
return this.$store.getters.getProfileList
}
},
mounted: function () {
console.log(this.profileList)
}
})