kp
Size: a a a
ПА
ПА
А
import axios from "axios";
export default {
data: () => ({
profile: []
}),
mounted() {
this.loadProfile()
},
methods: {
loadProfile() {
axios.get('/api/profile')
.then(res => {
this.profile = res.data;
})
}
}
}
DF
DF
DF
DF
ПЯ
ПЯ
EP
M