Перенос директивы с nuxt 2 под nuxt 3

Цена договорная
18 июня 2024, 22:41 • 5 откликов • 46 просмотров
Необходимо перенести директиву, написанную под nuxt 2, под nuxt 3
Цена договорная, подробное описание тоже
Телеграм: @korzenqwe
в привязке к инпуту выглядело следующим образом
```
<input
ref="phone"
v-model="localValue"
v-imask.trim="{
placeholder,
...currentMask,
mutation: code
}"
:data-input="dataset"
:inputmode="mode"
class="input input--large"
:class="[validationClass, animationErrorClass, staticClass]"
:disabled="isDisabled"
:type="localType"
required
@input="onInput"
@blur="onBlur"
>
```