barbican-reset 1.6.2 → 1.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,35 @@
1
+ <template>
2
+
3
+ <a v-on:click="loading = true" :href="href" :class="variant ? `btn btn-${variant}` : ``">
4
+
5
+ <slot v-if="!loading" />
6
+
7
+ <dot-typing v-else />
8
+
9
+ </a>
10
+
11
+ </template>
12
+
13
+ <script>
14
+ import { DotTyping } from './br_button/components'
15
+
16
+ export default {
17
+ name: "BrAnchor",
18
+ data() {
19
+ return {
20
+ loading: false
21
+ }
22
+ },
23
+ props: {
24
+ variant: {
25
+ type: String
26
+ },
27
+ href: {
28
+ type: String
29
+ }
30
+ },
31
+ components: {
32
+ DotTyping
33
+ }
34
+ }
35
+ </script>
package/dist/.DS_Store ADDED
Binary file