This commit is contained in:
2022-02-07 01:12:33 +08:00
parent e5f6db819e
commit c1a7eb4b7c
7 changed files with 90 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<template lang="pug">
.admin-object
p object {{ name }}
</template>
<script>
export default {
asyncData({ params }) {
return { name: params.name };
},
};
</script>