mirror of
https://github.com/aljazceru/meshcore-web.git
synced 2025-12-20 17:44:20 +01:00
start implementing client based on meshtxt
This commit is contained in:
28
src/components/pages/ConnectPage.vue
Normal file
28
src/components/pages/ConnectPage.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<Page>
|
||||
|
||||
<!-- app bar -->
|
||||
<AppBar title="Connect" subtitle="Select a Connection Method"/>
|
||||
|
||||
<!-- list -->
|
||||
<div class="mx-auto my-auto">
|
||||
<ConnectButtons/>
|
||||
</div>
|
||||
|
||||
</Page>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AppBar from "../AppBar.vue";
|
||||
import Page from "./Page.vue";
|
||||
import ConnectButtons from "../connect/ConnectButtons.vue";
|
||||
|
||||
export default {
|
||||
name: 'ConnectPage',
|
||||
components: {
|
||||
ConnectButtons,
|
||||
Page,
|
||||
AppBar,
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user