[Vuejs]-How can I use vuetify 1.5?

0👍

There are several sandboxes around with Vuetify 1.x, for example this one. Have a look at the search results maybe one of them works for you?

Though it does not seem hard to create a project with Vuetify 1.5:

Vue.use(Vuetify);
new Vue({
  el: '#app',
  data() {
    return {
      vuetifyVersion: Vuetify.version
    };
  },
})
<div id="app">
  <v-app>
    <v-main>
      <v-btn>Hello Vuetify {{ vuetifyVersion }}</v-btn>
    </v-main>
  </v-app>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.7.10/vue.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/vuetify@1.5.24/dist/vuetify.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/vuetify@1.5.24/dist/vuetify.min.css " rel="stylesheet">

Maybe the sandbox can help how to set it up in a project with a builder.

Leave a comment