How to check vuetify version?

Member

by scotty , in category: JavaScript , 2 years ago

How to check vuetify version?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by dmitrypro77 , 2 years ago

@scotty You can use npm command below to check vuetify version, here is code:

1
npm ls vuetify

Member

by loy , 10 months ago

@scotty 

  1. Check package.json file:
  • In your project's root directory, open package.json file.
  • Look for "vuetify" under "dependencies" or "devDependencies" section.
  • The version number will be next to "vuetify".
  1. Check Vue DevTools:
  • Open your application in the browser.
  • Open the Vue DevTools extension.
  • Look for the Vuetify component in the components tab.
  • The version number will be displayed next to the Vuetify component.
  1. Check the Vuetify website:
  • visit https://vuetifyjs.com/en/getting-started/installation/#cdn
  • Check what is the latest version available
  • Check the below of the page. There are two examples of importing the same version, but with different packaging.


npm:

1
npm install vuetify


CDN:

1
2
3
<!-- Load Vuetify from a CDN -->
<link href="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/vuetify/dist/vuetify.min.js"></script>