Undo the ts setting in vue components, begin migration to Vue.component setup

This commit is contained in:
Dane Everitt
2018-12-29 19:24:52 -08:00
parent 0e1d35c8a0
commit 6330d6579f
35 changed files with 179 additions and 198 deletions

View File

@@ -22,14 +22,12 @@
</div>
</template>
<script lang="ts">
<script>
import Status from '../../../helpers/statuses';
import { Socketio } from '../../../mixins/socketio/index';
import { mapState } from 'vuex';
export default {
name: 'power-buttons',
mixins: [Socketio],
computed: {
...mapState('socket', ['connected', 'status']),
},