GitHunt
MM

MMF-FE/weex-vue-fixed

This component is using for solving the issue that when using vue-router in weex, the DOM elements with position: fixed attribute will never disappear or close on Android devices

weex-vue-fixed

中文说明

This component is using for solving the issue that when using vue-router in weex, the DOM elements with position: fixed attribute will never disappear or close on Android devices. issue

Install

npm i weex-vue-fixed --save-dev
# or
yarn add weex-vue-fixed --dev

Configuration

import Vue from 'vue'
import Router from 'vue-router'
import weexVueFixed from 'weex-vue-fixed'

Vue.use(weexVueFixed)
Vue.use(Router)

let router = new Router({
    // you config
})

router.beforeEach((to, from, next) => {
    Vue.fixedClear() // clear for android
    next()
})

Usage

<wv-fixed top="0" left="0" :show="true">
    <text>This is fixed tag for android , clear safe</text>
</wv-fixed>

Props

name type desc
left number css left
right number css right
bottom number css bottom
top number css top
show boolean create or destroy

Languages

TypeScript54.2%JavaScript43.1%Vue2.7%

Contributors

Apache License 2.0
Created February 24, 2017
Updated June 1, 2021
MMF-FE/weex-vue-fixed | GitHunt