This commit is contained in:
liuye
2022-01-22 15:11:07 +08:00
parent f8e2eb0122
commit c85a89d1f2
42 changed files with 2852 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<template>
<div class="application">
</div>
</template>
<script>
export default {
name: 'application',
data() {
return {
}
},
methods: {
},
onShow() {
document.title = '应用'
},
}
</script>
<style lang="scss" scoped>
.application {
}
</style>