mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 05:06:38 +00:00
refactor(gui): update eslint rules
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user