Home.vue 387 B

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