美文网首页
vue vuetifyui helloworld

vue vuetifyui helloworld

作者: simplerandom | 来源:发表于2020-06-01 17:13 被阅读0次
npm install --save vuetify

main.js

import Vuetify from 'vuetify'
import 'vuetify/dist/vuetify.min.css'
Vue.use(Vuetify)

new Vue({
  router,
  store,vuetify:new Vuetify(),
  render: h => h(App)
}).$mount('#app')

使用

 <v-app id='app'>          
    <v-btn
      x-large
      color="success"
      dark
    >Extra large Button</v-btn>       
  </v-app> 

相关文章

网友评论

      本文标题:vue vuetifyui helloworld

      本文链接:https://www.haomeiwen.com/subject/pvuszhtx.html