22 lines
279 B
Vue
22 lines
279 B
Vue
<template>
|
|
<section class="history">
|
|
历史届次hhh
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "history",
|
|
props: {
|
|
instance: Function,
|
|
permissions: Function,
|
|
dict: Object,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scope>
|
|
.history {
|
|
|
|
}
|
|
</style> |