We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be92e4 commit 9c98b2bCopy full SHA for 9c98b2b
components/Modal.vue
@@ -0,0 +1,26 @@
1
+<template>
2
+ <b-modal v-model="show" hide-header hide-footer centered>
3
+ <a
4
+ target="_blank"
5
+ href="https://opensource254.github.io/guidelines/"
6
+ class="btn btn-primary btn-block text-white"
7
+ >On Github</a
8
+ >
9
10
11
+ href="https://join.slack.com/t/opensource254/shared_invite/zt-ehsd5mb6-Dm5QVTkErOd6UvbaAYGDiw"
12
13
+ >On Slack</a
14
15
+ </b-modal>
16
+</template>
17
+<script>
18
+export default {
19
+ props: {
20
+ show: {
21
+ type: Boolean,
22
+ default: true
23
+ }
24
25
+}
26
+</script>
0 commit comments