Moved connect to a tabbed panel
This commit is contained in:
parent
fdcc0d5275
commit
5ca9e3d053
6 changed files with 74 additions and 8 deletions
25
src/components/paneConnect.vue
Normal file
25
src/components/paneConnect.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue