mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
fix(otp-generator): editable secret
This commit is contained in:
parent
b3390f6ff7
commit
a599528044
1 changed files with 7 additions and 3 deletions
|
@ -63,9 +63,9 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed, ref, watch } from 'vue';
|
||||
import { computed, ref } from 'vue';
|
||||
import { Refresh } from '@vicons/tabler';
|
||||
import { useTimestamp, useWindowFocus, whenever } from '@vueuse/core';
|
||||
import { useTimestamp } from '@vueuse/core';
|
||||
import { useThemeVars } from 'naive-ui';
|
||||
import { useStyleStore } from '@/stores/style.store';
|
||||
import InputCopyable from '@/components/InputCopyable.vue';
|
||||
|
@ -80,7 +80,11 @@ const interval = computed(() => (now.value / 1000) % 30);
|
|||
const theme = useThemeVars();
|
||||
const styleStore = useStyleStore();
|
||||
|
||||
const [secret, refreshSecret] = computedRefreshable(generateSecret);
|
||||
const secret = ref(generateSecret());
|
||||
|
||||
function refreshSecret() {
|
||||
secret.value = generateSecret();
|
||||
}
|
||||
|
||||
const [tokens] = computedRefreshable(
|
||||
() => ({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue