Moved connect to a tabbed panel

This commit is contained in:
Joel Collins 2019-02-07 14:44:04 +00:00
parent fdcc0d5275
commit 5ca9e3d053
6 changed files with 74 additions and 8 deletions

View file

@ -0,0 +1,25 @@
<template>
<div id="paneConnect">
<hostInput/>
<hostDisplay/>
</div>
</template>
<script>
// Import components
import hostInput from './paneConnectComponents/hostInput.vue'
import hostDisplay from './paneConnectComponents/hostDisplay'
// Export main app
export default {
name: 'paneConnect',
components: {
hostInput,
hostDisplay
}
}
</script>
<style lang="less">
</style>