본문 바로가기

공부/개발

TypeError: Cannot read properties of undefined (reading 't') at VueComponent.listData

반응형
new Vue({
  el: '#app',
  router,
  store,
  components: { App },
  template: '<App/>
})

main.js에서

new Vue({
  el: '#app',
  vuetify: new Vuetify()
})

vuetify: new Vuetify() 이거 하나만 추가해주면 된다.

반응형