直播軟體app開發,VUE解決錨點重新整理問題

zhibo系統開發發表於2023-02-06

直播軟體app開發,VUE解決錨點重新整理問題

  // 子頁面
  // 子頁面按鈕
<div style="padding-top: 20px;">
   <el-button type="danger" @click="jumpConsole3">Started</el-button>
  </div>
 // 呼叫父頁面方法
methods: {
   jumpConsole3() {
      this.$parent.selfFun()
   }
 }
 
  // 父頁面
  // 父頁面錨點
  <a name="firstAnchor" id="firstAnchor"></a>
  // 父頁面方法
    methods: {
    selfFun() {
      document.querySelector('#firstAnchor').scrollIntoView(true)
    },
}


 以上就是直播軟體app開發,VUE解決錨點重新整理問題, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2934067/,如需轉載,請註明出處,否則將追究法律責任。

相關文章