vuetify-admin
Version:
SPA admin framework for Vue.js running on top of REST APIs, built on Vuetify
16 lines (14 loc) • 312 B
JavaScript
import Resource from "./resource";
/**
* For components that must use specific property of the resource.
*/
export default {
mixins: [Resource],
props: {
/**
* Property of resource for fetching the value to show.
* Support dot notation for nested object.
*/
source: String,
},
};