You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
500 B
19 lines
500 B
const { switchVersion, loadModule } = require('./utils')
|
|
|
|
const Vue = loadModule('vue')
|
|
|
|
if (!Vue || typeof Vue.version !== 'string') {
|
|
console.warn('[vue-demi] Vue is not found. Please run "npm install vue" to install.')
|
|
}
|
|
else if (Vue.version.startsWith('2.7.')) {
|
|
switchVersion(2.7)
|
|
}
|
|
else if (Vue.version.startsWith('2.')) {
|
|
switchVersion(2)
|
|
}
|
|
else if (Vue.version.startsWith('3.')) {
|
|
switchVersion(3)
|
|
}
|
|
else {
|
|
console.warn(`[vue-demi] Vue version v${Vue.version} is not supported.`)
|
|
}
|