개발이야기/Vue - Vuetify

vue - vuetify Dialog창에서 scroll 이동 버튼 만들기

라울이 2022. 1. 26. 17:33
            <v-btn
              class="mr-5"
              large
              color="primary"
              :fixed="true"
              fab
              right
              top
              @click="
                $vuetify.goTo($refs.saveBtn, {
                  container: '.v-dialog--fullscreen',
                })
              "
            >
              <v-icon dark>
                mdi-chevron-up
              </v-icon></v-btn
            >

 

 

$vuetify.goTo("이동할 target ref이름", {
  container: '스크롤이 생긴 최상위 부모',
})