Skip to content
On this page

vue版本

Authors

你知道吗,你可以在运行时轻松检查 vue.js 的版本?

ts
import { version } from 'vue'

if( version.split('.')[0] === '2' ){
  console.log('哦,这个应用程序要崩溃了。')
  console.log('升级到Vue 3!')
}
has loaded