43 lines
492 B
Vue
43 lines
492 B
Vue
<template>
|
|
<bpe-addressinfo-tmp :value="value" :disabled="true"></bpe-addressinfo-tmp>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import BpeAddressinfoTmp from "./bpe-addressinfo-tmp"
|
|
|
|
export default {
|
|
components: { BpeAddressinfoTmp },
|
|
computed: {
|
|
|
|
},
|
|
props: {
|
|
value: {
|
|
default () {
|
|
return { }
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
onHide() {
|
|
|
|
},
|
|
unmounted() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
</style> |