soy nuevo en vuejs..
No entiendo cómo vincular este vue js y whatapp-web.js
https://github.com/pedroslopez/whatsapp-web.js
Instalar en pc
vue init webpack-simple whatsapp-vue cd whatsapp-vue npm i whatsapp-web.js npm install npm run devprincipal.js
import Vue from 'vue' import App from './App.vue' const { Client } = require('whatsapp-web.js'); const client = new Client(); new Vue({ el: '#app', render: h => h(App) })Recibí un error cuando npm ejecuta dev
client?cd17:167 ./node_modules/whatsapp-web.js/index.js Module parse failed: Unexpected token (24:4) You may need an appropriate loader to handle this file type. | List: require('./src/structures/List'), | Buttons: require('./src/structures/Buttons'), | ...Constants | }; | @ ./src/main.js 4:15-41 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/main.jspero funciona con momentjs
alguien me puede ayudar con un ejemplo?
gracias