meixioacomponent 0.1.88 → 0.1.89
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/lib/meixioacomponent.common.js +413 -1
- package/lib/meixioacomponent.umd.js +413 -1
- package/lib/meixioacomponent.umd.min.js +5 -5
- package/package.json +1 -1
- package/packages/components/base/baseTimeLine/baseTimeLineRight.vue +2 -2
- package/packages/components/base/baseTimeLine/index.js +7 -0
- package/packages/components/index.js +3 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
|
|
8
8
|
<script>
|
|
9
|
+
import DynamicMount from "../../dynamicmount/DynamicMount";
|
|
9
10
|
export default {
|
|
10
11
|
data() {
|
|
11
12
|
return {};
|
|
@@ -30,8 +31,7 @@ export default {
|
|
|
30
31
|
},
|
|
31
32
|
methods: {
|
|
32
33
|
init() {
|
|
33
|
-
|
|
34
|
-
let component = new meixioacomponent.DynamicMountClass({
|
|
34
|
+
let component = new DynamicMount({
|
|
35
35
|
vueComponent: this.$props.customComponent,
|
|
36
36
|
mountedDom: this.$refs.timeLineCustomWrap,
|
|
37
37
|
componentProps: this.$props.timeLineItem,
|
|
@@ -31,6 +31,7 @@ import baseForm from "./proForm/proForm/index";
|
|
|
31
31
|
import baseFormWrap from "./proForm/proFormWrap/index";
|
|
32
32
|
import baseProTable from "./proPageTable/index";
|
|
33
33
|
import baseMoverVerifiBar from "./base/baseMoverVerifiBar";
|
|
34
|
+
import baseTimeLine from "./base/baseTimeLine";
|
|
34
35
|
// js 文件相关
|
|
35
36
|
import DynamicMount from "./dynamicmount/index.js";
|
|
36
37
|
import componentConfig from "../config/componentConfig";
|
|
@@ -74,6 +75,7 @@ const meixicomponents = [
|
|
|
74
75
|
baseFormWrap,
|
|
75
76
|
baseProTable,
|
|
76
77
|
baseMoverVerifiBar,
|
|
78
|
+
baseTimeLine,
|
|
77
79
|
];
|
|
78
80
|
|
|
79
81
|
const install = (Vue) => {
|
|
@@ -124,6 +126,7 @@ export default {
|
|
|
124
126
|
baseFormWrap,
|
|
125
127
|
baseProTable,
|
|
126
128
|
baseMoverVerifiBar,
|
|
129
|
+
baseTimeLine,
|
|
127
130
|
SelectStore,
|
|
128
131
|
useImg,
|
|
129
132
|
useFixedHeader,
|