@burh/nuxt-core 1.0.82 → 1.0.83
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.
|
@@ -1,62 +1,74 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
<div>
|
|
3
|
+
<modal
|
|
4
|
+
:show.sync="show"
|
|
5
|
+
class="modal modal-video"
|
|
6
|
+
bodyClasses="container-fluid px-4"
|
|
7
|
+
headerClasses="container-fluid px-4"
|
|
8
|
+
>
|
|
9
|
+
<template slot="header">
|
|
10
|
+
<h5 class="display-4">{{ title }}</h5>
|
|
11
|
+
</template>
|
|
12
|
+
<div class="text-center my-4">
|
|
13
|
+
<iframe
|
|
14
|
+
width="100%"
|
|
15
|
+
height="540"
|
|
16
|
+
:src="link"
|
|
17
|
+
frameborder="0"
|
|
18
|
+
allowfullscreen
|
|
19
|
+
class="rounded"
|
|
20
|
+
>
|
|
21
|
+
</iframe>
|
|
22
|
+
<div class="bottom-button" v-if="button">
|
|
23
|
+
<button
|
|
24
|
+
@click="$emit('clickVideo')"
|
|
25
|
+
class="btn btn-success"
|
|
26
|
+
>
|
|
27
|
+
{{ button.text }}
|
|
28
|
+
</button>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</modal>
|
|
32
|
+
</div>
|
|
17
33
|
</template>
|
|
18
34
|
|
|
19
35
|
<script>
|
|
20
36
|
export default {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
},
|
|
37
|
+
name: "video-modal",
|
|
38
|
+
props: {
|
|
39
|
+
show: Boolean,
|
|
40
|
+
link: String,
|
|
41
|
+
title: String,
|
|
42
|
+
button: Object
|
|
43
|
+
},
|
|
44
|
+
data() {
|
|
45
|
+
return {
|
|
46
|
+
videoModalProperties: {
|
|
47
|
+
showModal: false
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
mounted() {}
|
|
38
52
|
};
|
|
39
53
|
</script>
|
|
40
54
|
<style lang="scss">
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
padding: 0;
|
|
55
|
-
}
|
|
55
|
+
.pointer {
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
}
|
|
58
|
+
.custom-copy {
|
|
59
|
+
box-shadow: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.modal-header {
|
|
63
|
+
padding-bottom: 0;
|
|
64
|
+
}
|
|
65
|
+
.modal-body {
|
|
66
|
+
padding: 0;
|
|
67
|
+
}
|
|
56
68
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
69
|
+
.modal-video {
|
|
70
|
+
.modal-dialog {
|
|
71
|
+
min-width: 60rem;
|
|
61
72
|
}
|
|
73
|
+
}
|
|
62
74
|
</style>
|