1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="home">
- <a-alert :message="message" type="info" showIcon />
- </div>
- </template>
- <script>
- export default {
- name: 'Home',
- components: {
- },
- data () {
- return {
- message: '欢迎登录' + process.env.VUE_APP_PRO_NAME
- }
- },
- created () {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- .home {
- /* width: 900px;
- margin: 0 auto;
- padding: 25px 0; */
- }
- </style>
|