安装vuetify最基础依赖

    1. vue create my-app
    2. vue add vuetify

    在component/index.vue中放如下代码.

    1. <v-app>
    2. <v-navigation-drawer app></v-navigation-drawer>
    3. <v-toolbar app></v-toolbar>
    4. <v-content>
    5. <v-container fluid>
    6. <router-view></router-view>
    7. </v-container>
    8. </v-content>
    9. <v-footer app></v-footer>
    10. </v-app>