Commit 73bacf4d by 弓厶

1、初始化版本号

parent 364a51dc
<template> <template>
<a-drawer title="版本信息" placement="right" :visible="visible" @close="close" :closable="false" :maskClosable="true" <a-drawer
width="300"> title="版本信息"
<a-card title="系统UI" size="small"> placement="right"
<p> :visible="visible"
<label>版本号:</label> @close="close"
<span>0.0.59</span> :closable="false"
</p> :maskClosable="true"
</a-card> width="300"
</a-drawer> >
<a-card title="系统UI" size="small">
<p>
<label>版本号:</label>
<span>0.0.1</span>
</p>
</a-card>
</a-drawer>
</template> </template>
<script> <script>
export default { export default {
name: "VersionModel", name: "VersionModel",
props: { props: {
visible: Boolean, visible: Boolean
}, },
data() { data() {
return { return {
versiondatas:[], versiondatas: []
} };
}, },
methods: { methods: {
close() { close() {
this.$emit('update:visible', false); this.$emit("update:visible", false);
}
},
created() {
}
} }
},
created() {}
};
</script> </script>
<style scoped> <style scoped>
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment