|
1
|
const { __, sprintf } = wp.i18n; |
|
2
|
|
|
3
|
export function renderCurrentPage( component, options = {} ) { |
|
4
|
const pref = 'jet-form-builder_page_'; |
|
5
|
|
|
6
|
new Vue( { |
|
7
|
el: '#' + ( pref + component.name ), |
|
8
|
render: h => h( component ), |
|
9
|
...options, |
|
10
|
} ); |
|
11
|
}
|