emis-sapp/components/buns-post-edit-templates/bpe-addressjiami-tmp.vue

43 lines
492 B
Vue
Raw Normal View History

2024-02-01 05:48:01 +00:00
<template>
2024-06-11 10:54:43 +00:00
<bpe-addressinfo-tmp :value="value" :disabled="true"></bpe-addressinfo-tmp>
2024-02-01 05:48:01 +00:00
</template>
<script>
2024-05-31 10:42:15 +00:00
2024-06-11 10:54:43 +00:00
import BpeAddressinfoTmp from "./bpe-addressinfo-tmp"
2024-02-01 05:48:01 +00:00
export default {
2024-06-11 10:54:43 +00:00
components: { BpeAddressinfoTmp },
2024-02-01 05:48:01 +00:00
computed: {
2024-06-11 10:54:43 +00:00
2024-02-01 05:48:01 +00:00
},
props: {
value: {
default () {
return { }
}
}
},
data() {
return {
}
},
created() {
},
onHide() {
},
unmounted() {
},
methods: {
2024-05-31 10:42:15 +00:00
2024-02-01 05:48:01 +00:00
}
}
</script>
<style scoped lang="scss">
2024-06-11 10:54:43 +00:00
2024-02-01 05:48:01 +00:00
</style>