22 lines
318 B
Vue
22 lines
318 B
Vue
|
|
<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>
|