Skip to content

Commit ed28113

Browse files
committed
eslint fix
1 parent c48cc96 commit ed28113

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import { OPTIONS } from './constants'
55
export default function install (Vue, options = {}, router = null) {
66
options = {...OPTIONS, ...options}
77

8-
Vue.use(VueForceNextTick);
8+
Vue.use(VueForceNextTick)
99
Vue.component('VueAnnouncer', VueAnnouncer)
1010
Vue.prototype.$announcer = {
1111
set (message) {
1212
if (this.data) {
1313
this.data.content = ''
1414
Vue.$forceNextTick(() => {
15-
this.data.content = message
16-
})
15+
this.data.content = message
16+
})
1717
}
1818
},
1919

0 commit comments

Comments
 (0)