vue
Version:
Reactive, component-oriented view layer for modern web interfaces.
19 lines (16 loc) • 362 B
text/typescript
export const SSR_ATTR = 'data-server-rendered'
export const ASSET_TYPES = ['component', 'directive', 'filter'] as const
export const LIFECYCLE_HOOKS = [
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated',
'errorCaptured',
'serverPrefetch'
] as const