UNPKG

bootstrap-vue-wrapper

Version:

Bootstrap 5 components in Vue3 wrapper.

24 lines (23 loc) 372 B
import { defineComponent as e } from "vue"; const m = e({ name: "BsForm", emits: ["submit"], data() { return { submitClicked: !1 }; }, methods: { /** * On submit event. * * @param event */ onSubmit(t) { t.preventDefault(), this.submitClicked = !0, this.$emit("submit", t); } } }); export { m as default };