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
I'm trying to use vue-autonumeric on an Electron app (on Linux).
I can import autonumeric alone
importAutoNumericfrom'AutoNumeric'
using an alias:
resolve: {alias: {'AutoNumeric': 'numeric'}}
but if I try to import vue-autonumeric I see the error Cannot find module 'AutoNumeric'
importVueAutonumericfrom'vue-autonumeric'
using an alias:
resolve: {alias: {'AutoNumeric': 'numeric',// Or these other aliases// 'AutoNumeric': 'node_modules/autonumeric/dist/autoNumeric.min',// 'AutoNumeric': path.join(__dirname, '../node_modules/autonumeric/dist/autoNumeric.min'),}}