@ -57,7 +57,11 @@ There are a few important things to note here:
> **Important Note:** VuES6 uses `Object.getOwnPropertyNames` to determine the methods to bind to the Vue.js component. Thus, inherited methods are not supported at this time.
- Class methods beginning with `watch_` will not be made available as normal methods, but are instead watchers. In this example `watch_message()` defines a watcher on the `message` field.
- There is no `data()` function. If you need to compute starting values, use the constructor.
- There is no `data()` function, however the Vue lifecycle functions can be hooked into by implementing the following methods on your class: