Missing a default scoped slot Vuetify

后端 未结 1 1389
小鲜肉
小鲜肉 2020-12-02 02:39

I am looking at the tutorials on vues page for adding tooltips. https://vuetifyjs.com/en/components/tooltips

It seems to work fine for an individual button.

1条回答
  •  隐瞒了意图╮
    2020-12-02 03:27

    After debugging the Code snippet i found the solution by adding slot-scope="i" to the tooltip component like :

    new Vue({
      el: '#app',
      data() {
        return {
          bars: ['home', 'event', 'info']
        }
      }
    
    })
    
    
    
    
    
    
    {{n}} {{n}}

    0 讨论(0)
提交回复
热议问题