@vcita/design-system 1.22.7 → 1.22.9-beta.0
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.
- package/init/DesignSystem.js +4 -0
- package/package.json +2 -1
- package/src/components/list/VcBaseListItem/VcBaseListItem.vue +2 -0
- package/src/components/list/VcListEntity/VcListEntity.stories.js +2 -1
- package/src/components/list/VcListEntity/VcListEntity.vue +4 -0
- package/src/components/listPage/VcListItem/VcListItem.stories.js +2 -1
- package/src/components/listPage/VcListItem/VcListItem.vue +4 -0
- package/utils/componentStatus.js +9 -0
- package/config/storybook/main.js +0 -4
- package/dist/@vcita/design-system.esm.js +0 -2
- package/dist/@vcita/design-system.ssr.js +0 -1
- package/dist/VcHeaderDropdown-01a1829f.js +0 -167
- package/dist/VcHeaderDropdown-e8f0fb6e.js +0 -178
- package/dist/entry-9179c3f6.js +0 -29047
- package/dist/entry-9936ba7e.js +0 -29706
- package/dist/index-af18accb.js +0 -2
- package/dist/index-cf030f05.js +0 -1
- package/dist/vue2-pdf-embed-b76ffeec.js +0 -29
- package/dist/vue2-pdf-embed-eb44354d.js +0 -5
- package/src/directives/overrideVuetifyLtr.js +0 -11
- package/src/stories/assets/accessibility.png +0 -0
- package/src/stories/assets/accessibility.svg +0 -5
- package/src/stories/assets/addon-library.png +0 -0
- package/src/stories/assets/assets.png +0 -0
- package/src/stories/assets/context.png +0 -0
- package/src/stories/assets/discord.svg +0 -15
- package/src/stories/assets/docs.png +0 -0
- package/src/stories/assets/figma-plugin.png +0 -0
- package/src/stories/assets/github.svg +0 -3
- package/src/stories/assets/share.png +0 -0
- package/src/stories/assets/styling.png +0 -0
- package/src/stories/assets/testing.png +0 -0
- package/src/stories/assets/theming.png +0 -0
- package/src/stories/assets/tutorials.svg +0 -12
- package/src/stories/assets/youtube.svg +0 -4
package/init/DesignSystem.js
CHANGED
|
@@ -5,6 +5,7 @@ import vuetifyConfig from './vuetify.config';
|
|
|
5
5
|
import { reducer } from './vuetify.config';
|
|
6
6
|
import ClickOutside from 'vue-click-outside';
|
|
7
7
|
import highlightFilter from '../src/filters/highlightFilter';
|
|
8
|
+
import VueDeprecate from 'vue-deprecate';
|
|
8
9
|
import '../src/scss/global.scss';
|
|
9
10
|
|
|
10
11
|
import {
|
|
@@ -131,6 +132,9 @@ Vue.use(Vuetify, {
|
|
|
131
132
|
},
|
|
132
133
|
});
|
|
133
134
|
|
|
135
|
+
// Register vue-deprecate plugin
|
|
136
|
+
Vue.use(VueDeprecate);
|
|
137
|
+
|
|
134
138
|
// Register common directives
|
|
135
139
|
Vue.directive('ds-click-outside', ClickOutside);
|
|
136
140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vcita/design-system",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.9-beta.0",
|
|
4
4
|
"description": "vcita design system",
|
|
5
5
|
"author": "vcita",
|
|
6
6
|
"scripts": {
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"lodash.throttle": "^4.1.1",
|
|
42
42
|
"vue": "^2.6.14",
|
|
43
43
|
"vue-click-outside": "^1.1.0",
|
|
44
|
+
"vue-deprecate": "^0.3.2",
|
|
44
45
|
"vue-infinite-loading": "^2.4.5",
|
|
45
46
|
"vue-pdf-embed": "1.2.1",
|
|
46
47
|
"vue-virtual-scroller": "^1.1.2",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import VcListEntityCmp from './VcListEntity.vue';
|
|
2
2
|
import VcBaseDocs from '@/stories/VcBaseDocs.mdx';
|
|
3
|
+
import { getComponentStatus } from '../../../../utils/componentStatus';
|
|
3
4
|
|
|
4
5
|
const baseProps = {
|
|
5
6
|
disabled: false,
|
|
@@ -79,7 +80,7 @@ export default {
|
|
|
79
80
|
url: 'https://www.figma.com/file/xIOY6fBoA1wpy1tHv3i5js/vcita---ui-library?node-id=4133%3A39303',
|
|
80
81
|
},
|
|
81
82
|
status: {
|
|
82
|
-
type:
|
|
83
|
+
type: getComponentStatus(VcListEntityCmp, 'stable'),
|
|
83
84
|
url: 'http://www.url.com/status', // will make the tag a link
|
|
84
85
|
},
|
|
85
86
|
docs: {
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
import VcSwitch from '../../VcSwitch/VcSwitch.vue';
|
|
26
26
|
export default {
|
|
27
27
|
name: 'VcListEntity',
|
|
28
|
+
deprecated: {
|
|
29
|
+
since: '1.22.7',
|
|
30
|
+
message: 'VcListEntity is deprecated. Please consider using an alternative component.',
|
|
31
|
+
},
|
|
28
32
|
components: { VcSwitch },
|
|
29
33
|
props: {
|
|
30
34
|
disabled: {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import VcListItemCmp from './VcListItem';
|
|
2
2
|
import VcBaseDocs from '@/stories/VcBaseDocs.mdx';
|
|
3
|
+
import { getComponentStatus } from '../../../../utils/componentStatus';
|
|
3
4
|
|
|
4
5
|
const Template = (args, { argTypes }) => ({
|
|
5
6
|
components: { VcListItem: VcListItemCmp },
|
|
@@ -61,7 +62,7 @@ export default {
|
|
|
61
62
|
url: 'https://www.figma.com/file/xIOY6fBoA1wpy1tHv3i5js/vcita---ui-library?node-id=4133%3A41278',
|
|
62
63
|
},
|
|
63
64
|
status: {
|
|
64
|
-
type:
|
|
65
|
+
type: getComponentStatus(VcListItemCmp, 'beta'),
|
|
65
66
|
url: 'http://www.url.com/status', // will make the tag a link
|
|
66
67
|
},
|
|
67
68
|
docs: {
|
|
@@ -24,6 +24,10 @@ import VcLayout from '../../VcLayout/VcLayout.vue';
|
|
|
24
24
|
|
|
25
25
|
export default {
|
|
26
26
|
name: 'VcListItem',
|
|
27
|
+
deprecated: {
|
|
28
|
+
since: '1.22.7',
|
|
29
|
+
message: 'VcListItem is deprecated. Please consider using an alternative component.',
|
|
30
|
+
},
|
|
27
31
|
components: { VcLayout, VcCheckbox, VcActions },
|
|
28
32
|
props: {
|
|
29
33
|
showSelect: {
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Utility function to determine component status for Storybook
|
|
3
|
+
* @param {Object} component - The Vue component object
|
|
4
|
+
* @param {string} defaultStatus - The default status if not deprecated ('beta' | 'stable' | 'releaseCandidate')
|
|
5
|
+
* @returns {string} - The appropriate status type ('deprecated' | defaultStatus)
|
|
6
|
+
*/
|
|
7
|
+
export function getComponentStatus(component, defaultStatus = 'beta') {
|
|
8
|
+
return component?.deprecated ? 'deprecated' : defaultStatus;
|
|
9
|
+
}
|
package/config/storybook/main.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
'use strict';Object.defineProperty(exports,'__esModule',{value:true});var entry=require('../entry-9179c3f6.js');require('vuetify/lib');exports["default"]=entry.b3;
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
'use strict';require('vuetify/lib');var entry=require('./entry-9179c3f6.js');var script = {
|
|
2
|
-
name: 'VcHeaderDropdown',
|
|
3
|
-
components: {
|
|
4
|
-
VcLayout: entry.V,
|
|
5
|
-
VcGroupedItems: entry.al,
|
|
6
|
-
VcDropdown: entry.ak,
|
|
7
|
-
VcIcon: entry.F
|
|
8
|
-
},
|
|
9
|
-
props: {
|
|
10
|
-
/**
|
|
11
|
-
* Array of grouped items for dropdown
|
|
12
|
-
* Format: [{ label, id, items: [{ id, label }] }]
|
|
13
|
-
*/
|
|
14
|
-
options: {
|
|
15
|
-
type: Array,
|
|
16
|
-
required: true
|
|
17
|
-
},
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* ID of the currently selected option
|
|
21
|
-
* Used to highlight the selected item in the dropdown
|
|
22
|
-
*/
|
|
23
|
-
selectedOptionId: {
|
|
24
|
-
type: String,
|
|
25
|
-
default: ''
|
|
26
|
-
},
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Size of dropdown icon
|
|
30
|
-
*/
|
|
31
|
-
iconSize: {
|
|
32
|
-
type: String,
|
|
33
|
-
default: '10'
|
|
34
|
-
},
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Color of dropdown icon
|
|
38
|
-
*/
|
|
39
|
-
iconColor: {
|
|
40
|
-
type: String,
|
|
41
|
-
default: 'var(--gray-darken-4)'
|
|
42
|
-
},
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* Icon name to display
|
|
46
|
-
*/
|
|
47
|
-
iconName: {
|
|
48
|
-
type: String,
|
|
49
|
-
default: '$caret_down'
|
|
50
|
-
},
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Data-qa attribute for testing
|
|
54
|
-
*/
|
|
55
|
-
dataQa: {
|
|
56
|
-
type: String,
|
|
57
|
-
default: 'VcHeaderDropdown'
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Aria label for accessibility
|
|
62
|
-
*/
|
|
63
|
-
ariaLabel: {
|
|
64
|
-
type: String,
|
|
65
|
-
default: 'Show options'
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
data: function data() {
|
|
69
|
-
return {
|
|
70
|
-
isOpen: false
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
};/* script */
|
|
74
|
-
var __vue_script__ = script;
|
|
75
|
-
/* template */
|
|
76
|
-
|
|
77
|
-
var __vue_render__ = function __vue_render__() {
|
|
78
|
-
var _vm = this;
|
|
79
|
-
|
|
80
|
-
var _h = _vm.$createElement;
|
|
81
|
-
|
|
82
|
-
var _c = _vm._self._c || _h;
|
|
83
|
-
|
|
84
|
-
return _c('VcDropdown', {
|
|
85
|
-
attrs: {
|
|
86
|
-
"close-on-content-click": true
|
|
87
|
-
},
|
|
88
|
-
scopedSlots: _vm._u([{
|
|
89
|
-
key: "activator",
|
|
90
|
-
fn: function fn(ref) {
|
|
91
|
-
var on = ref.on;
|
|
92
|
-
var attrs = ref.attrs;
|
|
93
|
-
return [_c('VcLayout', _vm._g(_vm._b({
|
|
94
|
-
staticClass: "VcHeaderDropdown__icon-wrapper",
|
|
95
|
-
attrs: {
|
|
96
|
-
"align-center": ""
|
|
97
|
-
}
|
|
98
|
-
}, 'VcLayout', attrs, false), on), [_c('VcIcon', {
|
|
99
|
-
attrs: {
|
|
100
|
-
"data-qa": _vm.dataQa,
|
|
101
|
-
"size": _vm.iconSize,
|
|
102
|
-
"color": _vm.iconColor,
|
|
103
|
-
"role": "button",
|
|
104
|
-
"aria-expanded": _vm.isOpen,
|
|
105
|
-
"aria-label": _vm.ariaLabel,
|
|
106
|
-
"tabindex": "0"
|
|
107
|
-
}
|
|
108
|
-
}, [_vm._v("\n " + _vm._s(_vm.iconName) + "\n ")])], 1)];
|
|
109
|
-
}
|
|
110
|
-
}]),
|
|
111
|
-
model: {
|
|
112
|
-
value: _vm.isOpen,
|
|
113
|
-
callback: function callback($$v) {
|
|
114
|
-
_vm.isOpen = $$v;
|
|
115
|
-
},
|
|
116
|
-
expression: "isOpen"
|
|
117
|
-
}
|
|
118
|
-
}, [_vm._v(" "), _c('VcGroupedItems', {
|
|
119
|
-
attrs: {
|
|
120
|
-
"item-groups": _vm.options,
|
|
121
|
-
"selected": _vm.selectedOptionId,
|
|
122
|
-
"selected-state-design": "highlighted"
|
|
123
|
-
},
|
|
124
|
-
on: {
|
|
125
|
-
"change": function change($event) {
|
|
126
|
-
return _vm.$emit('optionClicked', $event);
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
scopedSlots: _vm._u([{
|
|
130
|
-
key: "header",
|
|
131
|
-
fn: function fn(ref) {
|
|
132
|
-
var group = ref.group;
|
|
133
|
-
return [_c('div', {
|
|
134
|
-
staticClass: "VcHeaderDropdown__group-label"
|
|
135
|
-
}, [_vm._v(_vm._s(group.label))])];
|
|
136
|
-
}
|
|
137
|
-
}])
|
|
138
|
-
})], 1);
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
var __vue_staticRenderFns__ = [];
|
|
142
|
-
/* style */
|
|
143
|
-
|
|
144
|
-
var __vue_inject_styles__ = function __vue_inject_styles__(inject) {
|
|
145
|
-
if (!inject) return;
|
|
146
|
-
inject("data-v-41098370_0", {
|
|
147
|
-
source: ".VcHeaderDropdown__icon-wrapper[data-v-41098370]{height:var(--size-value4);width:var(--size-value4);flex-grow:0;cursor:pointer}.VcHeaderDropdown__group-label[data-v-41098370]{color:var(--gray-darken-3);font-size:var(--font-size-xs-small);font-weight:var(--font-weight-large);padding:var(--size-value4) var(--size-value4) var(--size-value2)}",
|
|
148
|
-
map: undefined,
|
|
149
|
-
media: undefined
|
|
150
|
-
});
|
|
151
|
-
};
|
|
152
|
-
/* scoped */
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
var __vue_scope_id__ = "data-v-41098370";
|
|
156
|
-
/* module identifier */
|
|
157
|
-
|
|
158
|
-
var __vue_module_identifier__ = "data-v-41098370";
|
|
159
|
-
/* functional template */
|
|
160
|
-
|
|
161
|
-
var __vue_is_functional_template__ = false;
|
|
162
|
-
/* style inject shadow dom */
|
|
163
|
-
|
|
164
|
-
var __vue_component__ = /*#__PURE__*/entry.a$({
|
|
165
|
-
render: __vue_render__,
|
|
166
|
-
staticRenderFns: __vue_staticRenderFns__
|
|
167
|
-
}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, entry.b0, undefined);exports["default"]=__vue_component__;
|
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
import 'vuetify/lib';
|
|
2
|
-
import { V as VcLayout, al as VcGroupedItems, ak as VcDropdown, F as VcIcon, a$ as normalizeComponent, b0 as createInjector } from './entry-9936ba7e.js';
|
|
3
|
-
|
|
4
|
-
var script = {
|
|
5
|
-
name: 'VcHeaderDropdown',
|
|
6
|
-
components: {
|
|
7
|
-
VcLayout,
|
|
8
|
-
VcGroupedItems,
|
|
9
|
-
VcDropdown,
|
|
10
|
-
VcIcon
|
|
11
|
-
},
|
|
12
|
-
props: {
|
|
13
|
-
/**
|
|
14
|
-
* Array of grouped items for dropdown
|
|
15
|
-
* Format: [{ label, id, items: [{ id, label }] }]
|
|
16
|
-
*/
|
|
17
|
-
options: {
|
|
18
|
-
type: Array,
|
|
19
|
-
required: true
|
|
20
|
-
},
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* ID of the currently selected option
|
|
24
|
-
* Used to highlight the selected item in the dropdown
|
|
25
|
-
*/
|
|
26
|
-
selectedOptionId: {
|
|
27
|
-
type: String,
|
|
28
|
-
default: ''
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* Size of dropdown icon
|
|
33
|
-
*/
|
|
34
|
-
iconSize: {
|
|
35
|
-
type: String,
|
|
36
|
-
default: '10'
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Color of dropdown icon
|
|
41
|
-
*/
|
|
42
|
-
iconColor: {
|
|
43
|
-
type: String,
|
|
44
|
-
default: 'var(--gray-darken-4)'
|
|
45
|
-
},
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Icon name to display
|
|
49
|
-
*/
|
|
50
|
-
iconName: {
|
|
51
|
-
type: String,
|
|
52
|
-
default: '$caret_down'
|
|
53
|
-
},
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* Data-qa attribute for testing
|
|
57
|
-
*/
|
|
58
|
-
dataQa: {
|
|
59
|
-
type: String,
|
|
60
|
-
default: 'VcHeaderDropdown'
|
|
61
|
-
},
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Aria label for accessibility
|
|
65
|
-
*/
|
|
66
|
-
ariaLabel: {
|
|
67
|
-
type: String,
|
|
68
|
-
default: 'Show options'
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
|
|
72
|
-
data() {
|
|
73
|
-
return {
|
|
74
|
-
isOpen: false
|
|
75
|
-
};
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
/* script */
|
|
81
|
-
const __vue_script__ = script;
|
|
82
|
-
/* template */
|
|
83
|
-
|
|
84
|
-
var __vue_render__ = function () {
|
|
85
|
-
var _vm = this;
|
|
86
|
-
|
|
87
|
-
var _h = _vm.$createElement;
|
|
88
|
-
|
|
89
|
-
var _c = _vm._self._c || _h;
|
|
90
|
-
|
|
91
|
-
return _c('VcDropdown', {
|
|
92
|
-
attrs: {
|
|
93
|
-
"close-on-content-click": true
|
|
94
|
-
},
|
|
95
|
-
scopedSlots: _vm._u([{
|
|
96
|
-
key: "activator",
|
|
97
|
-
fn: function (ref) {
|
|
98
|
-
var on = ref.on;
|
|
99
|
-
var attrs = ref.attrs;
|
|
100
|
-
return [_c('VcLayout', _vm._g(_vm._b({
|
|
101
|
-
staticClass: "VcHeaderDropdown__icon-wrapper",
|
|
102
|
-
attrs: {
|
|
103
|
-
"align-center": ""
|
|
104
|
-
}
|
|
105
|
-
}, 'VcLayout', attrs, false), on), [_c('VcIcon', {
|
|
106
|
-
attrs: {
|
|
107
|
-
"data-qa": _vm.dataQa,
|
|
108
|
-
"size": _vm.iconSize,
|
|
109
|
-
"color": _vm.iconColor,
|
|
110
|
-
"role": "button",
|
|
111
|
-
"aria-expanded": _vm.isOpen,
|
|
112
|
-
"aria-label": _vm.ariaLabel,
|
|
113
|
-
"tabindex": "0"
|
|
114
|
-
}
|
|
115
|
-
}, [_vm._v("\n " + _vm._s(_vm.iconName) + "\n ")])], 1)];
|
|
116
|
-
}
|
|
117
|
-
}]),
|
|
118
|
-
model: {
|
|
119
|
-
value: _vm.isOpen,
|
|
120
|
-
callback: function ($$v) {
|
|
121
|
-
_vm.isOpen = $$v;
|
|
122
|
-
},
|
|
123
|
-
expression: "isOpen"
|
|
124
|
-
}
|
|
125
|
-
}, [_vm._v(" "), _c('VcGroupedItems', {
|
|
126
|
-
attrs: {
|
|
127
|
-
"item-groups": _vm.options,
|
|
128
|
-
"selected": _vm.selectedOptionId,
|
|
129
|
-
"selected-state-design": "highlighted"
|
|
130
|
-
},
|
|
131
|
-
on: {
|
|
132
|
-
"change": function ($event) {
|
|
133
|
-
return _vm.$emit('optionClicked', $event);
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
scopedSlots: _vm._u([{
|
|
137
|
-
key: "header",
|
|
138
|
-
fn: function (ref) {
|
|
139
|
-
var group = ref.group;
|
|
140
|
-
return [_c('div', {
|
|
141
|
-
staticClass: "VcHeaderDropdown__group-label"
|
|
142
|
-
}, [_vm._v(_vm._s(group.label))])];
|
|
143
|
-
}
|
|
144
|
-
}])
|
|
145
|
-
})], 1);
|
|
146
|
-
};
|
|
147
|
-
|
|
148
|
-
var __vue_staticRenderFns__ = [];
|
|
149
|
-
/* style */
|
|
150
|
-
|
|
151
|
-
const __vue_inject_styles__ = function (inject) {
|
|
152
|
-
if (!inject) return;
|
|
153
|
-
inject("data-v-41098370_0", {
|
|
154
|
-
source: ".VcHeaderDropdown__icon-wrapper[data-v-41098370]{height:var(--size-value4);width:var(--size-value4);flex-grow:0;cursor:pointer}.VcHeaderDropdown__group-label[data-v-41098370]{color:var(--gray-darken-3);font-size:var(--font-size-xs-small);font-weight:var(--font-weight-large);padding:var(--size-value4) var(--size-value4) var(--size-value2)}",
|
|
155
|
-
map: undefined,
|
|
156
|
-
media: undefined
|
|
157
|
-
});
|
|
158
|
-
};
|
|
159
|
-
/* scoped */
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
const __vue_scope_id__ = "data-v-41098370";
|
|
163
|
-
/* module identifier */
|
|
164
|
-
|
|
165
|
-
const __vue_module_identifier__ = undefined;
|
|
166
|
-
/* functional template */
|
|
167
|
-
|
|
168
|
-
const __vue_is_functional_template__ = false;
|
|
169
|
-
/* style inject SSR */
|
|
170
|
-
|
|
171
|
-
/* style inject shadow dom */
|
|
172
|
-
|
|
173
|
-
const __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
174
|
-
render: __vue_render__,
|
|
175
|
-
staticRenderFns: __vue_staticRenderFns__
|
|
176
|
-
}, __vue_inject_styles__, __vue_script__, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, createInjector, undefined, undefined);
|
|
177
|
-
|
|
178
|
-
export { __vue_component__ as default };
|