mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-01 14:24:23 +02:00
refactor
This commit is contained in:
@@ -62,10 +62,10 @@ const props = defineProps<{
|
||||
}>();
|
||||
|
||||
const scope = computed(() => props.path.split('/').slice(0, -1));
|
||||
const key = computed(() => props.path.split('/').at(-1));
|
||||
const key = computed(() => props.path.split('/').at(-1)!);
|
||||
|
||||
const value = ref<any>(null);
|
||||
const valueForEditor = ref<string | null>(null);
|
||||
const valueForEditor = ref<string>('');
|
||||
|
||||
function fetchValue() {
|
||||
misskeyApi('i/registry/get-detail', {
|
||||
|
||||
Reference in New Issue
Block a user