- 
        Couldn't load subscription status. 
- Fork 66
lesson 16
In this lesson, we will start working on refactoring our MyVuetable component to accept properties and make it work as the same.
As a summary, here are the list of properties that we are going to make:
- api-url
- fields
- multi-sort
- sort-order
- append-params
If you are new to Prop, check out the documentation on Vue.js Guide here.
First, we need to define that our component accepts those properties. We are going to borrow the same property names from Vuetable in this case.
// MyVuetable.vue
//...
export default {
  name: 'my-vuetable',
  components: {
    //...
  },
  props: {
    apiUrl: {
      type: String,
      required: true
    },
    fields: {
      type: Array,
      required: true
    },
    sortOrder: {
      type: Array,
      default() {
        return []
      }
    },
    appendParams: {
      type: Object,
      default() {
        return {}
      }
    },
    detailRowComponent: {
      type: String
    }
  },
  //...
}Only the
api-urlandfieldsproperties are required. So, we marked it withrequired: true.
Now, we modify the template to use our newly defined properties, like so.
// MyVuetable.vue
  //...
  <vuetable ref="vuetable"
    :api-url="apiUrl"
    :fields="fields"
    pagination-path=""
    :per-page="10"
    :multi-sort="true"
    :sort-order="sortOrder"
    :append-params="appendParams"
    detail-row-component="detailRowComponent"
    //...
  ></vuetable>Note
Theper_pagehas been changed from20to10.
We need to clean up the following as well:
Looking at the data section, you will see that all the variables in this section are no longer needed as they will be passed in via our properties instead, so we can remove all of them here.
But!! Before we do that, let's review and find its usage inside our MyVuetable component so that we do not miss out on anything. Everything seems fine, except for moreParams as we have some references in the onFilterSet and onFilterReset methods down below.
Since we are going to delete moreParams here and replace it with appendParams prop instead. That means we need to update these two methods to properly use our appendParams prop instead. Let's change moreParams to appendParams in these two methods.
// MyVuetable.vue
  //...
    onFilterSet (filterText) {
      this.appendParams.filter = filterText
      Vue.nextTick( () => this.$refs.vuetable.refresh() )
    },
    onFilterReset () {
      delete this.appendParams.filter
      Vue.nextTick( () => this.$refs.vuetable.refresh() )
    }
  //...Alright, if we haven't overlooked anything, we should be done here.
- 
So, we can now delete all variables in the datasection.// MyVuetable.vue // you can even remove the data section itself data () { return {} }, //... 
- 
The importstatements ofFieldDefsandDetailRoware no longer needed here, so remove both of them.
Now we need to modify App.vue, so that all necessary data are declared and pass into <my-vuetable> via properties we've defined earlier. Here is what we need to do:
- Add datasection and declare our variables
- Import FieldDefs.jsin here
- Import VueandDetailRowand registerDetailRowwithVue.usehere
- Add prop to our App template
So, our App.vue should now looks like this:
// App.vue
<template>
  <div id="app">
    <img src="./assets/logo.png">
    <my-vuetable
      api-url="https://vuetable.ratiw.net/api/users"
      :fields="fields"
      :sort-order="sortOrder"
      :append-params="moreParams"
      detail-row-component="my-detail-row"
    ></my-vuetable>
  </div>
</template>
<script>
import Vue from 'vue'
import FieldDefs from './components/FieldDefs.js'
import MyVuetable from './components/MyVuetable'
import DetailRow from './components/DetailRow'
Vue.component('my-detail-row', DetailRow)
export default {
  name: 'app',
  components: {
    MyVuetable
  },
  data () {
    return {
      fields: FieldDefs,
      sortOrder: [
        {
          field: 'email',
          sortField: 'email',
          direction: 'asc'
        }
      ],
      moreParams: {}
    }
  }  
}
</script>
<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style> Now, run the project and everything should still work exactly the same. The only difference is that we are now passing relevant properties from our App component down to our MyVuetable component. This should make it much more reusable.
However, there is one more thing that we still haven't look into which is the scoped slots for our actions buttons which is still embedded inside our MyVuetable.
The scoped slots cannot be passed down like any other properties. We will deal with this in the next lesson.
- Your first Vuetable
- Displaying more fields
- Cleaning up code
- Make change to field title
- Column alignment
- Format fields using callbackoption
- Adding pagination
- Displaying pagination information
- Customizing Vuetable
- Make columns sortable
- Using special fields
- Adding Detail Row
- Adding Search Filter
- Moving Field Definitions to another file
- Passing Props to MyVuetable - Part 1
- Passing Props to MyVuetable - Part 2
- Passing Scoped Slot to MyVuetable
- Using Twitter's Bootstrap CSS with Vuetable
- Pagination for Twitter's Bootstrap