Skip to content

Commit 9c98b2b

Browse files
(Fix) I had forgotten to commit the modal component leading to build failure 🤣🤣
1 parent 2be92e4 commit 9c98b2b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

components/Modal.vue

+26
Original file line numberDiff line numberDiff line change
@@ -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+
<a
10+
target="_blank"
11+
href="https://join.slack.com/t/opensource254/shared_invite/zt-ehsd5mb6-Dm5QVTkErOd6UvbaAYGDiw"
12+
class="btn btn-primary btn-block text-white"
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

Comments
 (0)