index.vue 308 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <div class="bg">
  4. <div></div>
  5. </div>
  6. </div>
  7. </template>
  8. <script >
  9. </script>
  10. <style lang="less" scoped>
  11. .bg{
  12. width: 100%;
  13. height: 100vh;
  14. background: url('../../assets/images/login-bg.png') no-repeat;
  15. background-size: 100% 100%;
  16. }
  17. </style>