adrema/resources/js/views/member/Show.vue

24 lines
274 B
Vue
Raw Normal View History

2022-11-18 15:55:44 +01:00
<template>
<div></div>
</template>
<script>
export default {
data: function () {
return {
inner: {},
};
},
methods: {},
props: {
data: {},
},
created() {
this.inner = this.data;
},
};
</script>