Skip to content

Commit a14bf06

Browse files
committed
v.2.0.0
[feature] quasar framework updated
1 parent 3440c27 commit a14bf06

38 files changed

+9037
-5973
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
### [2.0.0] - 2019-11-04
4+
[feature] quasar framework updated
35
### [1.7.5] - 2019-10-07
46
[fix] cid
57
### [1.7.4] - 2019-10-03

Diff for: README.md

+14
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,20 @@ framework: {
9393
]
9494
},
9595
```
96+
You must create a quasar plugin for clipboard:
97+
```js
98+
import VueClipboard from 'vue-clipboard2'
99+
100+
export default ({ Vue }) => {
101+
Vue.use(VueClipboard)
102+
}
103+
```
104+
and add them to quasar config:
105+
```js
106+
boot: [
107+
'clipboard'
108+
]
109+
```
96110
```js
97111
import MqttClient from 'mqtt-board'
98112

Diff for: babel.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
presets: [
3+
'@quasar/babel-preset-app'
4+
],
5+
plugins: [
6+
[
7+
'@babel/transform-runtime', {
8+
regenerator: true
9+
}
10+
],
11+
['@babel/plugin-proposal-decorators', { legacy: true }],
12+
'@babel/plugin-proposal-function-sent',
13+
'@babel/plugin-proposal-export-namespace-from',
14+
'@babel/plugin-proposal-numeric-separator',
15+
'@babel/plugin-proposal-throw-expressions'
16+
]
17+
}

Diff for: index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import MqttClient from './src/components/MqttClient.vue'
1+
import MqttClient from './lib/mqtt-board.js'
22

33
export default MqttClient

Diff for: lib/mqtt-board.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/mqtt-board.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)