Home.vue 388 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="home">
  3. <a-alert message="欢迎登录智能快洗发卷中心系统" type="info" showIcon />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Home',
  9. components: {},
  10. data () {
  11. return {}
  12. },
  13. created () {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style scoped>
  20. .home {
  21. /* width: 900px;
  22. margin: 0 auto;
  23. padding: 25px 0; */
  24. }
  25. </style>