mirror of
https://github.com/aljazceru/meshcore-web.git
synced 2025-12-19 00:54:21 +01:00
29 lines
522 B
Vue
29 lines
522 B
Vue
<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>
|