refactor(gui): update eslint rules

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
Pranav C
2021-07-19 16:40:49 +05:30
parent fa00be39b8
commit 59f55e4595
249 changed files with 2358 additions and 2353 deletions

View File

@@ -35,11 +35,11 @@
export default {
directives: {},
components: {},
validate ({ params }) {
validate({ params }) {
return true
},
props: {},
data () {
data() {
return {
user: {
username: 'swetha',
@@ -58,25 +58,25 @@ export default {
}
}
},
head () {
head() {
return {}
},
computed: {},
watch: {},
created () {
created() {
},
mounted () {
mounted() {
},
beforeDestroy () {
beforeDestroy() {
},
methods: {
update () {
update() {
// console.log('update user');
}
},
beforeCreated () {
beforeCreated() {
},
destroy () {
destroy() {
}
}
</script>