Skip to content

Commit

Permalink
fix(black-list): lint-check
Browse files Browse the repository at this point in the history
  • Loading branch information
snowraincloud committed Sep 22, 2024
1 parent a4ac1e3 commit deb5170
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions registry/lib/components/utils/black-list/Settings.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
<template>
<div>
<div class="custom-black-list-extra-options">
<VButton
ref="button"
@mouseover="loadNameBlackListSettings()"
@click="toggleNameSettings()"
>
<VButton ref="button" @mouseover="loadNameBlackListSettings()" @click="toggleNameSettings()">
精确匹配列表<VIcon icon="right-arrow" :size="16"></VIcon>
</VButton>
</div>
<div class="custom-black-list-extra-options">
<VButton
ref="button"
@mouseover="loadRegexBlackListSettings()"
@click="toggleRegexSettings()"
>
<VButton @mouseover="loadRegexBlackListSettings()" @click="toggleRegexSettings()">
正则匹配列表<VIcon icon="right-arrow" :size="16"></VIcon>
</VButton>
</div>
Expand All @@ -36,10 +28,6 @@ export default Vue.extend({
VIcon,
VButton,
},
data() {
return {
}
},
methods: {
async loadNameBlackListSettings() {
const isFirstLoad = await loadNameSettings()
Expand Down

0 comments on commit deb5170

Please sign in to comment.