1.0.5 • Published 6 years ago

vue-barrel v1.0.5

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

vue-barrel

Vue Barrel Layout

使用组件

安装npm包

npm install vue-barrel --save

引用vue-barrel插件

import VueBarrel from 'vue-barrel';

Vue.use(VueBarrel)

在组件中使用

<vue-barrel :list="brands" class="main" ele="vue-barrel">
          
    <div v-for="item in brands" :key="item.brand" class="vue-barrel">
        {{item.brand}}
    </div>

</vue-barrel>

data () {
    return {
      brands: [{
            "brand": "朋客"
        },
        {
            "brand": "三的"
        }];
    }
}
1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago