formatting
VSCode configuration: * editor.detectIndentation = false * editor.indentSize = 2
This commit is contained in:
parent
2af23ff409
commit
0712568273
@ -5,6 +5,14 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { useSession } from './stores/session'
|
||||
const session = useSession()
|
||||
session.init()
|
||||
</script>
|
||||
|
||||
<!-- eslint-disable -->
|
||||
<!-- eslint wants to combine this <script> and <script setup> which breaks the code ... -->
|
||||
<script>
|
||||
import NavBar from './components/NavBar'
|
||||
export default {
|
||||
@ -13,12 +21,6 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<script setup>
|
||||
import { useSession } from './stores/session';
|
||||
const session = useSession()
|
||||
session.init()
|
||||
</script>
|
||||
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
|
@ -5,8 +5,8 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { useSession } from '@/stores/session';
|
||||
import { ref } from 'vue'
|
||||
import { useSession } from '@/stores/session'
|
||||
|
||||
let qr = ref(null)
|
||||
let lnurl = ref(null)
|
||||
@ -19,7 +19,7 @@ await (async () => {
|
||||
qr = s.qr
|
||||
lnurl = s.lnurl
|
||||
} catch (err) {
|
||||
console.error("error:", err.reason || err)
|
||||
console.error('error:', err.reason || err)
|
||||
}
|
||||
})()
|
||||
</script>
|
@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import LoginQRCode from './LoginQRCode.vue';
|
||||
import LoginQRCode from './LoginQRCode.vue'
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
Loading…
x
Reference in New Issue
Block a user