index.vue 263 Bytes
Newer Older
潘际乾 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
	<m-pty title="dbepty" type="edit"></m-pty>
</template>

<script>
import Dbipty from "~/views/Statics/Dbipty";

export default {
  name: "StaticsDbepty",
	components: {
		"m-pty": Dbipty
	},
  data() {
    return {};
  },
};
</script>

<style>
</style>