modified eslint script and fixed errors found (#2905)

Co-authored-by: Andrew Henry <akhenry@gmail.com>
This commit is contained in:
Joel McKinnon
2020-04-30 11:53:07 -07:00
committed by GitHub
parent 2c2d8d6b56
commit 92ba103f45
2 changed files with 7 additions and 7 deletions

View File

@ -1,14 +1,14 @@
<template>
<div class="example">{{ msg }}</div>
<div class="example">{{ msg }}</div>
</template>
<script>
export default {
data () {
return {
msg: 'Hello world!'
data() {
return {
msg: 'Hello world!'
}
}
}
}
</script>