index.vue 265 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
	<m-act title="dbdact" type="delete"></m-act>
</template>

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

export default {
  name: "StaticsDbdact",
	components: {
		"m-act": Dbiact
	},
  data() {
    return {};
  },
};
</script>

<style>
</style>