[connect] Initial Implementation

This commit is contained in:
child_duckling 2022-04-16 01:23:09 -07:00
parent 66ac72b35d
commit 320778b9b7
4 changed files with 43 additions and 5 deletions

View file

@ -0,0 +1,18 @@
<template v-if="page == 'connect-linked'">
<div style="display:flex;width:100%;height:100%">
<webview id="foo" :src="https://connect.cidercollective.dev/linked.html" nodeintegration="true" style="display:inline-flex; width:100%;"></webview>
</div>
</template>
<script>
Vue.component('connect-linked', {
template: '#connect-linked',
mounted() {
document.querySelector("#foo").addEventListener("dom-ready", ()=>{
})
},
methods: {
}
});
</script>