heyujie
2021-05-20 6ebdefb4a5b2be82a8c452c0bb4624f3d85a17b7
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()