2023-01-19 05:44:06 +00:00
|
|
|
<template>
|
|
|
|
<div class="dropdown dropdown-left">
|
|
|
|
<slot>
|
|
|
|
<label tabindex="0" class="btn btn-circle btn-sm">
|
|
|
|
<Icon name="mdi-qrcode" />
|
|
|
|
</label>
|
|
|
|
</slot>
|
|
|
|
<div tabindex="0" class="card compact dropdown-content shadow-lg bg-base-100 rounded-box w-64">
|
|
|
|
<div class="card-body">
|
|
|
|
<h2 class="text-center">Page URL</h2>
|
|
|
|
<img :src="getQRCodeUrl()" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2023-07-23 04:11:29 +00:00
|
|
|
import { route } from "../../lib/api/base";
|
|
|
|
|
2023-01-19 05:44:06 +00:00
|
|
|
function getQRCodeUrl(): string {
|
|
|
|
const currentURL = window.location.href;
|
|
|
|
|
2023-07-23 04:11:29 +00:00
|
|
|
return route(`/qrcode`, { data: encodeURIComponent(currentURL) });
|
2023-01-19 05:44:06 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|