You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
319 B

<template>
<div class="about">
<h1>{{msg}}</h1>
</div>
</template>
<script>
import { api } from '@/api'
export default ({
data () {
return {
msg: ''
}
},
created () {
api.basic.login({ userName: 'admin', password: '123456' }).then(res => {
console.log(res)
})
}
})
</script>