[Vuejs]-How to Implement Delete Data in Vue-Tables-2?

0👍

Your template is missing the erase function which means you have to define erase as your components method, just like that:

  methods: {
    erase(h, row, index) {
      return <delete id={row.data.category_id}></delete>;
    }
  }

Leave a comment