We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b5a86 commit 2be92e4Copy full SHA for 2be92e4
components/Logo.vue
layouts/default.vue
@@ -15,6 +15,7 @@
15
role="button"
16
href="#"
17
style="filter: saturate(116%);"
18
+ @click="showJoin = !showJoin"
19
>join us</a
20
></span
21
>
@@ -24,6 +25,7 @@
24
25
</div>
26
<!-- End: Navigation with Button -->
27
<nuxt />
28
+ <JoinModal :show="showJoin" />
29
<footer>
30
<div class="row">
31
<div class="col-sm-6 col-md-4 footer-navigation">
@@ -76,3 +78,16 @@
76
78
</footer>
77
79
</main>
80
</template>
81
+<script>
82
+import JoinModal from '@/components/Modal'
83
+export default {
84
+ components: {
85
+ JoinModal
86
+ },
87
+ data() {
88
+ return {
89
+ showJoin: false
90
+ }
91
92
+}
93
+</script>
0 commit comments