蘋果手機真是各種坑,導致我都想摔手機呀,但沒辦法,用蘋果的人太多,程序員還是繼續在坑的路上行走!
上一篇文章介紹了一些組件,就是使用vux可以解決,蘋果手機使用position:fixed的問題
給需要position:fixed的元素上綁定一個 v-transfer-dom,script中引用一下這個組件就ok了
看代碼-----
<template> <div class="bottom" v-transfer-dom> <ul> <li @click="today"> <img src="../assets/img/jrrw.png" width="22%"/> <p>今日任務</p> </li> </ul> </div> </div> </template> <script> import { TransferDom } from 'vux' export default { name: 'class', data () { return { show: false } }, directives: { TransferDom }, methods:{ } </script>