aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bwirtz@genymobile.com>2020-10-23 15:24:16 -0700
committerBastien Wirtz <bwirtz@genymobile.com>2020-10-23 15:24:16 -0700
commited8b17e0df7ffa64e392bacbd2abf6492fdfb3f1 (patch)
tree361edff077dc7d1796389685a7bfd55ed28473fa /src/App.vue
parentc368290e32213f537b7b1479d767ee404b0a8399 (diff)
downloadhomer-ed8b17e0df7ffa64e392bacbd2abf6492fdfb3f1.tar.gz
homer-ed8b17e0df7ffa64e392bacbd2abf6492fdfb3f1.tar.zst
homer-ed8b17e0df7ffa64e392bacbd2abf6492fdfb3f1.zip
Update deps & fix lint issues
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/App.vue b/src/App.vue
index c47b5a9..d97df0c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -26,7 +26,7 @@
26 <Navbar 26 <Navbar
27 :open="showMenu" 27 :open="showMenu"
28 :links="config.links" 28 :links="config.links"
29 @navbar:toggle="showMenu = !showMenu" 29 @navbar-toggle="showMenu = !showMenu"
30 > 30 >
31 <DarkMode @updated="isDark = $event" /> 31 <DarkMode @updated="isDark = $event" />
32 32
@@ -40,9 +40,9 @@
40 <SearchInput 40 <SearchInput
41 class="navbar-item is-inline-block-mobile" 41 class="navbar-item is-inline-block-mobile"
42 @input="filterServices" 42 @input="filterServices"
43 @search:focus="showMenu = true" 43 @search-focus="showMenu = true"
44 @search:open="navigateToFirstService" 44 @search-open="navigateToFirstService"
45 @search:cancel="filterServices" 45 @search-cancel="filterServices"
46 /> 46 />
47 </Navbar> 47 </Navbar>
48 </div> 48 </div>
@@ -51,7 +51,7 @@
51 <div v-cloak class="container"> 51 <div v-cloak class="container">
52 <ConnectivityChecker 52 <ConnectivityChecker
53 v-if="config.connectivityCheck" 53 v-if="config.connectivityCheck"
54 @network:status-update="offline = $event" 54 @network-status-update="offline = $event"
55 /> 55 />
56 <div v-if="!offline"> 56 <div v-if="!offline">
57 <!-- Optional messages --> 57 <!-- Optional messages -->