Skip to content
Snippets Groups Projects
Commit 326acc81 authored by Adam Procter's avatar Adam Procter
Browse files

remove focus-trap

parent ca03229f
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@
},
"dependencies": {
"core-js": "^3.10.0",
"focus-trap": "^6.4.0",
"freeze-dry": "^0.2.4",
"marked": "^2.0.1",
"pouchdb": "^7.2.2",
......
......@@ -10,17 +10,18 @@
</p>
<div class="breaker-one">
<label for="name">Your Name: {{ nameFormatted }}</label>
<input
v-model.trim="name"
type="text"
id="name"
ref="name"
placeholder="type name here!"
autocorrect="off"
autocapitalize="none"
required
/>
<FocusTrap>
<input
v-model.trim="name"
type="text"
id="name"
ref="name"
placeholder="type name here!"
autocorrect="off"
autocapitalize="none"
required
/>
</FocusTrap>
</div>
<h2>Next start or join a <span class="long">microcosm !</span> 🚀</h2>
......@@ -114,9 +115,12 @@
</template>
<script>
export default {
name: 'JoinMicrocosm',
data: function () {
return {
// what you are calling yourself / device
......
......@@ -2,6 +2,5 @@ import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store/store'
import focustrap from 'focus-trap'
createApp(App).use(store).use(router).use(focustrap).mount('#app')
createApp(App).use(store).use(router).mount('#app')
Source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment