Skip to content

v0.8.4

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 09 Feb 02:50
· 3590 commits to main since this release
  • New
    • v-style has been reintroduced to deal with IE removing invalid inline styles. It comes with sweet prefixing sugar! See the API reference for more details.
    • isLiteral option for custom directives. This allows the user to create a directive that literally take its attribute value as the value.
    • Lifecycle hooks mechanism has been rewritten. User can now listen to 'hook:eventName' on created VMs. (created and ready events fire synchronously so they cannot be listened to after the VM has been created)
  • Fixed
    • #80 throws error in strict mode
    • #81 skipping directives in IE
    • When a repeated VM is directly $destroyed, it now properly removes itself and its data from corresponding Arrays.