Jonathan T L Lee

Results 5 comments of Jonathan T L Lee

@rasuru Its your lucky day I just put up some code in a PR that kindof implements this. #84

Yes thanks, I'm sure a lesson in Object.assign would be quite useful. Anyways I submitted the issue ages ago (in 2015) so no worries.

Tried `const refBlocking = toRef(state.settings, 'blocking')`. That fails. As a point of discussion should there be some sort of deep to ref function like lodash.get. `_.get(state, 'settings.blocking'` ``` watch on...

In my project base I've got round it using watchEffect. I just then had to mannually track changes which I know from reading the docs which watch will track changes...

@marvin-martian this is how I've got the renderer talking to main is with ```js // main.js where new BrowserView webPreferences: { preload: 'absolute/path/to/preload.js', contextIsolation: true } const session = webContents.session...