mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Remove all vue .native modifier
This commit is contained in:
parent
6cf93d9175
commit
0cc80b29ef
@ -12,12 +12,7 @@
|
||||
<div class="filter-patterns">
|
||||
<div v-for="p of patterns" :key="p" class="pattern">
|
||||
{{ p }}
|
||||
<VIcon
|
||||
title="删除"
|
||||
icon="mdi-trash-can-outline"
|
||||
:size="16"
|
||||
@click.native="deletePattern(p)"
|
||||
/>
|
||||
<VIcon title="删除" icon="mdi-trash-can-outline" :size="16" @click="deletePattern(p)" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="add-pattern">
|
||||
@ -27,7 +22,7 @@
|
||||
type="text"
|
||||
@keydown.enter="addPattern(newPattern)"
|
||||
/>
|
||||
<VButton type="transparent" @click.native="addPattern(newPattern)">
|
||||
<VButton type="transparent" @click="addPattern(newPattern)">
|
||||
<VIcon title="添加" icon="mdi-plus" :size="18" />
|
||||
</VButton>
|
||||
</div>
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
:data-aid="item.inputItem.aid"
|
||||
:data-cid="item.inputItem.cid"
|
||||
:data-bvid="item.inputItem.bvid"
|
||||
@click.native="shiftSelect($event, item, index)"
|
||||
@click="shiftSelect($event, item, index)"
|
||||
>
|
||||
<span class="episode-title">
|
||||
{{ item.title }}
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
:class="{ selected: isComponentSelected(c.name) }"
|
||||
:component-data="c"
|
||||
:data-name="c.name"
|
||||
@click.native="selectComponent(c)"
|
||||
@click="selectComponent(c)"
|
||||
>
|
||||
</ComponentSettings>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user