- Added Preferences tab
	- Piped Api Selection
	- Bug Fixes
This commit is contained in:
Shiny Nematoda 2022-05-15 09:51:06 +05:30
parent 19fc65e6c0
commit 0c1bb172b1
16 changed files with 384 additions and 216 deletions

View file

@ -7,12 +7,13 @@ const props = defineProps(['display', 'title', 'n']),
watch(
() => props.display,
(n) => {
n => {
console.log(n, props.display);
show.value = n;
},
);
watch(show, (n) => {
watch(show, n => {
emit('show', show.value);
});
</script>