Guest User

Untitled

a guest
Feb 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <template>
  2. <div id="app">
  3. <div class="heading">
  4. <h1>Cruds</h1>
  5. </div>
  6. <crud-component
  7. v-for="crud in cruds"
  8. v-bind="crud"
  9. :key="crud.id"
  10. @update="update"
  11. @delete="del"
  12. ></crud-component>
  13. <div>
  14. <button @click="create()">Add</button>
  15. </div>
  16. </div>
  17. </template>
Add Comment
Please, Sign In to add comment