Remove unneeded imports and methods
This commit is contained in:
parent
5f161b2163
commit
4ed15b740b
@ -1,5 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
import { defineComponent, PropType, ref, watch } from "vue"
|
||||
import { ref, watch } from "vue"
|
||||
import { GET } from "../api";
|
||||
import { useBudgetsStore } from "../stores/budget";
|
||||
|
||||
@ -20,9 +20,6 @@ const emit = defineEmits(["update:id", "update:text"]);
|
||||
watch(SearchQuery, () => {
|
||||
load(SearchQuery.value);
|
||||
});
|
||||
function saveTransaction(e: MouseEvent) {
|
||||
e.preventDefault();
|
||||
};
|
||||
function load(text: String) {
|
||||
emit('update:id', null);
|
||||
emit('update:text', text);
|
||||
|
Loading…
x
Reference in New Issue
Block a user