mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-27 20:30:43 +08:00
35 lines
559 B
TypeScript
35 lines
559 B
TypeScript
/**
|
|
*
|
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
*
|
|
* @date 2023-03-14
|
|
*
|
|
* @workspace ray-template
|
|
*
|
|
* @remark 今天也是元气满满撸代码的一天
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* TODO:
|
|
* - 全屏锁屏功能
|
|
* - 输入密码解锁
|
|
* - 可以重定向至登陆页
|
|
* - 显示当前时间(YYYY-MM-DD HH:mm)
|
|
*/
|
|
|
|
import type { PropType } from 'vue'
|
|
|
|
const LockScreen = defineComponent({
|
|
name: 'LockScreen',
|
|
// props: {},
|
|
setup() {
|
|
return {}
|
|
},
|
|
render() {
|
|
return <div class="lock-screen"></div>
|
|
},
|
|
})
|
|
|
|
export default LockScreen
|