31 lines
361 B
Vue
31 lines
361 B
Vue
<template>
|
|
<div class="AppConvenientService">
|
|
<div class="card-list">
|
|
便民服务
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "AppConvenientService",
|
|
appName: "便民服务",
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
onShow() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppConvenientService {
|
|
|
|
}
|
|
</style> |