UNPKG

682 BJavaScriptView Raw
1/** Global options
2 * @public
3 * @namespace options {Object}
4 */
5export default {
6
7 /** If `true`, `prop` changes trigger synchronous component updates.
8 * @name syncComponentUpdates
9 * @type Boolean
10 * @default true
11 */
12 //syncComponentUpdates: true,
13
14 /** Processes all created VNodes.
15 * @param {VNode} vnode A newly-created VNode to normalize/process
16 */
17 //vnode(vnode) { }
18
19 /** Hook invoked after a component is mounted. */
20 // afterMount(component) { }
21
22 /** Hook invoked after the DOM is updated with a component's latest render. */
23 // afterUpdate(component) { }
24
25 /** Hook invoked immediately before a component is unmounted. */
26 // beforeUnmount(component) { }
27};