1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import Vue from 'vue'
| import App from './App'
| import VueMqtt from 'vue-mqtt';
| Vue.config.productionTip = false
|
| let mqttClientOptions = {
| clientId: 'WebClient-' + parseInt(Math.random() * 100000),
| username: 'admin',
| password: 'admin123',
| useSSL: false,
| mqttVersion: 4,
| timeout: 3
| }
| Vue.use(VueMqtt, 'ws://192.168.20.189:15675/ws', mqttClientOptions);
|
| App.mpType = 'app'
|
| const app = new Vue({
| ...App
| })
| app.$mount()
|
|