vuetify-admin
Version:
SPA admin framework for Vue.js running on top of REST APIs, built on Vuetify
20 lines (18 loc) • 356 B
JavaScript
import Resource from "./resource";
/**
* CRUD action page layout used for Show, Create end Edit.
*/
export default {
mixins: [Resource],
props: {
/**
* Optional H1 title of the page shown on the left of top header
*/
title: String,
},
computed: {
item() {
return this.$store.state[this.resource].item;
},
},
};