mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-21 12:32:25 +00:00
17 lines
279 B
Vue
17 lines
279 B
Vue
<template>
|
|
<div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {getMyStated} from "@/api/workflowProcess"
|
|
export default {
|
|
async created(){
|
|
const res = await getMyStated()
|
|
if(res.code == 0){
|
|
console.log(res.data)
|
|
}
|
|
}
|
|
}
|
|
</script> |