PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.8
Booking for Appointments and Events Calendar – Amelia v2.4.8
2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / views / _components / tabs / AmTabsItem.vue
ameliabooking / v3 / src / views / _components / tabs Last commit date
AmTabs.vue 1 month ago AmTabsItem.vue 1 month ago
AmTabsItem.vue
52 lines
1 <template>
2 <el-tab-pane
3 :label="props.label"
4 :disabled="props.disabled"
5 :name="props.name"
6 :closable="props.closable"
7 :lazy="props.lazy"
8 >
9 <template v-if="$slots.label" #label>
10 <slot name="label"></slot>
11 </template>
12
13 <slot></slot>
14 </el-tab-pane>
15 </template>
16
17 <script setup>
18 /**
19 * Component Props
20 */
21 const props = defineProps({
22 label: {
23 type: String,
24 default: '',
25 },
26 disabled: {
27 type: Boolean,
28 default: false,
29 },
30 name: {
31 type: [String, Number],
32 },
33 closable: {
34 type: Boolean,
35 default: false,
36 },
37 lazy: {
38 type: Boolean,
39 default: false,
40 },
41 })
42 </script>
43
44 <script>
45 export default {
46 name: 'ElTabPane',
47 componentName: '"ElTabPane"',
48 }
49 </script>
50
51 <style lang="scss"></style>
52