Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-01-30 00:27:24 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-01-30 00:35:33 +0300
commit73f745a396ff33ebf47571950edc16984b588a6f (patch)
tree59c4532a8f34bd88beb1d57eacd93a93550ad272 /src/main.js
parent99449ac4aa8c0c6fa2016114957b8c8be2daadd5 (diff)
Use eslint-config-nextcloud
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.js b/src/main.js
index d2dedcb9..806bcfdf 100644
--- a/src/main.js
+++ b/src/main.js
@@ -22,7 +22,7 @@
import Vue from 'vue'
-import App from './app'
+import App from './App'
import router from './router'
import store from './store/store'
@@ -78,7 +78,7 @@ OCA.Tasks.App = new Vue({
store,
data: function() {
return {
- searchString: ''
+ searchString: '',
}
},
mounted: function() {
@@ -96,7 +96,7 @@ OCA.Tasks.App = new Vue({
},
cleanSearch() {
this.$store.commit('setSearchQuery', '')
- }
+ },
},
- render: h => h(App)
+ render: h => h(App),
})