Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <template>
  2. <!--<post-form/>-->
  3. <div class="wrapper">
  4. <b-table :data="posts">
  5. <template slot-scope="props">
  6. <b-table-column field="completed" label="complete">
  7. <b-checkbox
  8. v-model="props.row.done">
  9. </b-checkbox>
  10. </b-table-column>
  11. </template>
  12. </b-table>
  13. </div>
  14. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement