Home.vue 422 B

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