NurseStationUI/src/views/system/userlist/index.vue

22 lines
318 B
Vue
Raw Normal View History

2022-09-22 08:32:14 +08:00
<template></template>
<script>
import { getListByUser } from "@/api/system/userlist.js";
export default {
name: "userlist",
data() {
return {};
},
created() {
this.info()
},
methods: {
info() {
getListByUser().then((res) => {
console.log(res);
});
},
},
};
</script>