info.vue
498 Bytes
<!--
* @Date: 2024-10-18 17:57:33
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-18 17:59:36
* @FilePath: /hager/src/views/login/info.vue
* @Description: 文件描述
-->
<template>
<div class="hager-info-page"></div>
</template>
<script>
import mixin from 'common/mixin';
export default {
mixins: [mixin.init],
data () {
return {
}
},
mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.hager-info-page {
}
</style>