Line data Source code
1 : // @ts-check 2 : 3 : import Vue from 'vue'; 4 : import { mapState } from 'vuex'; 5 : 6 : /** 7 : * @typedef {V.Instance<typeof component> & { $butils: BaseVue.butils }} Instance 8 : */ 9 : 10 1 : const component = Vue.extend({ 11 : name: 'Home', 12 : computed: { 13 : /** @type {{ loading(): boolean }} */ 14 : ...mapState([ "loading" ]), 15 : /** @type {{ camConfig(): object }} */ 16 : ...mapState("cameras", { camConfig: "cameras" }) 17 : } 18 : }); 19 : export default component;