-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated vue and added web component build to dist-web-component/odk-w…
…eb-form.js Signed-off-by: Daniel J. Dufour <[email protected]>
- Loading branch information
1 parent
c0a409b
commit aa7c996
Showing
4 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { defineCustomElement } from 'vue'; | ||
import { OdkWebForm, webFormsPlugin } from '.'; | ||
|
||
const WebFormElement = defineCustomElement(OdkWebForm, { | ||
configureApp(app) { | ||
app.use(webFormsPlugin); | ||
}, | ||
shadowRoot: false | ||
}); | ||
|
||
customElements.define('odk-web-form', WebFormElement); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters