can not use any electron renderer api in quasar
-
because of quasar build be a spa page and then use electron wrapper build a app.so it cant’s use any remote electron api of renderer,like this
import webFrame from 'electron' webFrame.setVisualZoomLevelLimits(1, 1)
and set webpack config
output.libraryTarget = 'commonjs2'
,it will work.but many other electron renderer features integration with vue is a large project.An exist perfect project integration of vue and electron is electron-vue, But my app has developed by quasar…So,the quasar team have any plan to perfect integration of vue and electron?or quasar will use
electron-vue
instead ofquasar 's default electron wrapper
?