30 lines
331 B
Vue
30 lines
331 B
Vue
<template>
|
|
<div class=''>
|
|
LemonGroupList
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GroupList',
|
|
components: {},
|
|
data () {
|
|
return {
|
|
|
|
};
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
methods: {
|
|
|
|
},
|
|
created () {
|
|
|
|
},
|
|
mounted () {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
<style lang='scss'>
|
|
</style> |