partykamdev
partykamdev
Excluding paths based on assigned tags would be neat - one could exclude specific files/directories directly from Finder using context menu and get graphical overview what's been excluded
Probably it could be achieved with writing `@computed` decorator in a way that it registers all accessed properties as dependency (`Dep.target.depend()`) in Vue dependencies/watchers system.
Simplest workaround is to disable cache on that getter: ```ts //decorators.js import { createDecorator } from 'vue-class-component' export const NoCache = createDecorator((options, key) => { // component options should be...
Ive written universal `@computed` decorator, that can be used on vue classes, and as a mobx `computed` decorator: ```ts import {createDecorator} from 'vue-class-component'; import Vue from 'vue'; import {computed as...
@jbbch for now you can just use the solution i posted. If it's only for aliasing MobX store variables purposes, you won't have any performance drawbacks. If you have some...
i think its not stressed enough, but assumption of this plugin is when you install it you ditch vue watch system in favour of mobx. you shouldnt mix vue computed...
i think it should be one of the section in the readme about this problem just so people know what they are getting into :)
Also, I think showing warning with short description of the issue in development environment if someone uses `@computed` on vue-class-component getter. @kuitos what's your take on this?
Still in 8. Any solutions? I've tried hooking up RequiredTrueValidator with no success.
I've created gist with example solution to validating `required` on custom checkbox form field. Tested and working in Angular 8: https://gist.github.com/partyka1/a69c86d9d36f955947f45a129196e63d