You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat (wrap ns components): Wrap the Label NS component into a Vue's one.
* feat (wrap ns components): Refactor the way that the Vue components are registered.
* feat (wrap ns components): New registerComponent function which would be the way to wrap and register new NS and Vue components.
* feat (wrap ns components): Wrap a Vue component if no component is passed to the registerComponent function. Refactored Label component as it's the simpler case to refactor.
* feat (wrap ns components): Begin an sample app with all the components. For now only the Label one.
* feat (wrap ns components): Make v-model work also in the automatically wrapped Vue components. Register DatePicker.
* feat (wrap ns components): Add DatePicker component to the app-with-all-components app
* feat (wrap ns components): Better not using v-bind and v-on shorthands here.
* feat (wrap ns components): Another way for wrapping components which is not working yet.
* feat (wrap ns components): Some fixes following the @rigor789 guidelines
* feat (wrap ns components): Fix a typo.
* feat (wrap ns components): Debug the label component internals.
* feat (wrap ns components): Fix some typos.
* feat (wrap ns components): no need for return the entry.
* feat (wrap ns components): Change a second v-if to v-else because it does weird change the components order and I think is because nativescript-vue#127 is not completely fixed.
* feat (wrap ns components): Some fixes.
* feat (wrap ns components): Fix the render function for wrapped components.
* feat (wrap ns components): In order to keep the $refs, we pass the context.data object entirely to the component.
* feat (wrap ns components): Wrap DatePicker and Button elements. Add them to the test app.
* feat (wrap ns components): Destructured render function.
* feat: wrap all elements in a functional vue component
BREAKING CHANGE: All elements are now Vue components, in some cases where a ref is used to get the
nativeView will have to be updated to use `this.$refs.element.$el.nativeView` instead of
`this.$refs.element.nativeView`. There may be other breaking changes this introduces that are not
known at this point.
re nativescript-vue#266 re nativescript-vue#241
* test: update expectations for normalized element names
0 commit comments