21 lines
280 B
Vue
21 lines
280 B
Vue
<template>
|
|
<div class="appVersion-container">这是商家版APP</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'appVersion',
|
|
components: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.appVersion-container {
|
|
}
|
|
</style>
|