@click-append-inner 在 vuetify 3 代码中不起作用

问题描述 投票:0回答:1

我尝试使用“@click:append-inner =“randomFunc””来触发我在“v-text-field”内部附加的图标上的单击事件,但它不起作用。此外,将鼠标悬停在图标上时光标不会更改为指针。

我根据Vuetify.js3文档图标事件进行了尝试。

<v-text-field 
            variant="outlined" 
            density="compact" 
            append-inner-icon="mdi-plus-box"
            @click:append-inner="addSomething"
            >
         </v-text-field>

...

browser screen shot on

onclick append textfield onclicklistener vuetifyjs3
1个回答
0
投票

当我把它放入游乐场

时,工作完美
© www.soinside.com 2019 - 2024. All rights reserved.