index.vue 395 B

123456789101112
  1. <template>
  2. <picker-view class="picker-view" :value="indexArr" @change="onChange">
  3. <picker-view-column class="picker-view-column" v-for="(col, colIdx) in columns" :key="colIdx">
  4. <view v-for="(item, idx) in col" :key="idx">{{ item }}</view>
  5. </picker-view-column>
  6. </picker-view>
  7. </template>
  8. <script src="./index.js"></script>
  9. <style lang="css" scoped src="./index.css"></style>