1.0.1 • Published 8 years ago

weex-vue-fixed v1.0.1

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
8 years ago

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

nametypedesc
leftnumbercss left
rightnumbercss right
bottomnumbercss bottom
topnumbercss top
showbooleancreate or destroy