iview/examples/routers/affix.vue
huixisheng c9c5e751ae [change] optimize the webapack config
[change] rename test to examples
2017-03-03 22:38:40 +08:00

21 lines
328 B
Vue

<style>
body{
/*height: 2000px;*/
}
.demo-affix{
width: 100px;
height: 30px;
background: #f60;
color: #fff
}
</style>
<template>
<Affix>
<span class="demo-affix">固定在最顶部</span>
</Affix>
</template>
<script>
export default {
}
</script>