Skip to content

Commit 5e86236

Browse files
committed
fix: remove reexport of core.util
BREAKING CHANGE: remove export of util
1 parent c8ce618 commit 5e86236

File tree

5 files changed

+1
-8
lines changed

5 files changed

+1
-8
lines changed

ant/src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Import vue component
2-
import core from '@vue-js-cron/core'
32
import component from './CronEditor.vue'
43

54
// Declare install function executed by Vue.use()
@@ -13,7 +12,6 @@ export function install(Vue) {
1312
const plugin = {
1413
install,
1514
component,
16-
util: core.util,
1715
}
1816

1917
// To allow use as module (npm/webpack/etc.) export component

core/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ function install(app: App) {
1515
export const corePlugin = {
1616
install,
1717
}
18+
export default corePlugin

element-plus/src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Import vue component
2-
import core from '@vue-js-cron/core'
32
import component from './CronEditor.vue'
43

54
// Declare install function executed by Vue.use()
@@ -13,7 +12,6 @@ export function install(Vue) {
1312
const plugin = {
1413
install,
1514
component,
16-
util: core.util,
1715
}
1816

1917
// To allow use as module (npm/webpack/etc.) export component

quasar/src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Import vue component
2-
import core from '@vue-js-cron/core'
32
import component from './components/CronQuasar.vue'
43

54
// Declare install function executed by Vue.use()
@@ -13,7 +12,6 @@ export function install(Vue) {
1312
const plugin = {
1413
install,
1514
component,
16-
util: core.util,
1715
}
1816

1917
// To allow use as module (npm/webpack/etc.) export component

vuetify/src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Import vue component
2-
import core from '@vue-js-cron/core'
32
import component from './CronEditor.vue'
43

54
// Declare install function executed by Vue.use()
@@ -13,7 +12,6 @@ export function install(Vue) {
1312
const plugin = {
1413
install,
1514
component,
16-
util: core.util,
1715
}
1816

1917
// To allow use as module (npm/webpack/etc.) export component

0 commit comments

Comments
 (0)