18 lines
312 B
Vue
18 lines
312 B
Vue
// MyVuetable.vue
|
|
|
|
<template>
|
|
<vuetable ref="vuetable"
|
|
api-url="https://vuetable.ratiw.net/api/users"
|
|
:fields="['name', 'email', 'birthdate']"
|
|
></vuetable>
|
|
</template>
|
|
|
|
<script>
|
|
import Vuetable from "vuetable-2/src/components/Vuetable";
|
|
|
|
export default {
|
|
components: {
|
|
Vuetable
|
|
}
|
|
};
|
|
</script> |