- Login with JWT and refresh token rotation - Dashboard with projects cards - ProjectView with TreeView navigation - DocumentView with markdown editor and auto-save - Tag management (create, assign, remove) - Dark mode CSS variables - Security fixes applied (logout to backend, createDocument endpoint)
20 lines
500 B
JavaScript
20 lines
500 B
JavaScript
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.`)
|
|
}
|