용어집 수정ㅇㅇㅇ

This commit is contained in:
khj0414 2025-02-04 11:12:09 +09:00
parent d3170637c0
commit 233a345ae2
2 changed files with 0 additions and 4 deletions

View File

@ -34,10 +34,8 @@ const koreanChars = ['ㄱ', 'ㄴ', 'ㄷ', 'ㄹ', 'ㅁ', 'ㅂ', 'ㅅ', 'ㅇ', '
const englishChars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
const selectedAlphabet = ref(null);
//emit
const emit = defineEmits();
const selectAlphabet = (alphabet) => {
selectedAlphabet.value = selectedAlphabet.value === alphabet ? null : alphabet;
emit('update:data',selectedAlphabet.value);

View File

@ -120,7 +120,6 @@
loading.value = false; //
});
};
//
const getwordCategory = () => {
axios.get('worddict/getWordCategory')
@ -136,7 +135,6 @@
selectedAlphabet.value = newAlphabet;
getwordList(searchText.value,selectedAlphabet.value);
};
//
const search = (e) => {
searchText.value = e.trim();