refactor(components): add custom submit text prop to story form
This commit is contained in:
parent
e94c070300
commit
813feaa31c
@ -27,6 +27,7 @@
|
||||
canDraft?: boolean;
|
||||
endpoint: string;
|
||||
endpointMethod: "put" | "post";
|
||||
submitText?: string;
|
||||
}>();
|
||||
let drag = false;
|
||||
let acData = ref(props.data);
|
||||
@ -143,6 +144,7 @@
|
||||
@click="
|
||||
(e) => {
|
||||
if (!Array.isArray(values.chapters)) {
|
||||
// noinspection TypeScriptValidateTypes
|
||||
setFieldValue('chapters', []);
|
||||
}
|
||||
const chaps = [...toRaw(values.chapters)];
|
||||
@ -171,7 +173,9 @@
|
||||
</template>
|
||||
</draggable>
|
||||
</field-array>
|
||||
<a-button type="primary" html-type="submit">go.</a-button>
|
||||
<a-button type="primary" html-type="submit">{{
|
||||
submitText || "Post"
|
||||
}}</a-button>
|
||||
</form>
|
||||
<!-- </vee-form> -->
|
||||
</template>
|
||||
|
Loading…
Reference in New Issue
Block a user