33 lines
375 B
Vue
33 lines
375 B
Vue
<template>
|
|
<div class="partyOrg">
|
|
21313
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { VueOkrTree } from 'vue-okr-tree'
|
|
import 'vue-okr-tree/dist/vue-okr-tree.css'
|
|
|
|
export default {
|
|
name: 'AiPartyOrg',
|
|
|
|
components: {
|
|
VueOkrTree
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|