1234567891011121314151617181920212223242526 |
- <template>
- <div class="home">
- <a-alert message="欢迎登录洗车机运营管理平台系统" type="info" showIcon />
- </div>
- </template>
- <script>
- export default {
- name: 'Home',
- components: {},
- data () {
- return {}
- },
- created () {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- .home {
- /* width: 900px;
- margin: 0 auto;
- padding: 25px 0; */
- }
- </style>
|