ol-base-components 2.7.0 → 2.7.1
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/package.json +1 -1
- package/src/bin/initTemplate.js +4 -0
package/package.json
CHANGED
package/src/bin/initTemplate.js
CHANGED
|
@@ -244,6 +244,9 @@ export default {
|
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
246
|
},
|
|
247
|
+
created() {
|
|
248
|
+
this.init()
|
|
249
|
+
},
|
|
247
250
|
methods: {
|
|
248
251
|
async init() {
|
|
249
252
|
const params = {
|
|
@@ -304,6 +307,7 @@ export default {
|
|
|
304
307
|
}${generateMethods()}
|
|
305
308
|
}
|
|
306
309
|
}
|
|
310
|
+
</script>
|
|
307
311
|
`;
|
|
308
312
|
};
|
|
309
313
|
|