fix: remove props prefix from template
This commit is contained in:
parent
9f375ecd7d
commit
b224b331f5
|
|
@ -8,7 +8,7 @@
|
|||
required
|
||||
:type="passwordFieldType"
|
||||
autocomplete="current-password"
|
||||
:tabindex="props.tabindex"
|
||||
:tabindex="tabindex"
|
||||
@keyup.enter="e => $emit('submit', e)"
|
||||
@focusout="() => {validate(); validateAfterFirst = true}"
|
||||
@keyup="() => {validateAfterFirst ? validate() : null}"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<Loading
|
||||
v-if="props.isLoading && !ganttBars.length || dayjsLanguageLoading"
|
||||
v-if="isLoading && !ganttBars.length || dayjsLanguageLoading"
|
||||
class="gantt-container"
|
||||
/>
|
||||
<div
|
||||
|
|
|
|||
Loading…
Reference in New Issue