16 lines
265 B
Vue
16 lines
265 B
Vue
|
<template>
|
||
|
<view>123</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
page {
|
||
|
background: url("@/static/image/login-bg.png") no-repeat;
|
||
|
background-size: 100% 100%;
|
||
|
background-attachment: fixed;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
</style>
|