23 lines
429 B
Vue
23 lines
429 B
Vue
<template>
|
|
<div class="app-container m-user">
|
|
<Side @change="changeAction"/>
|
|
<Table ref="table"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Table from './components/Table.vue'
|
|
import Side from './components/Side.vue'
|
|
import { ref } from "vue";
|
|
|
|
const table = ref()
|
|
|
|
const changeAction = (data)=>{
|
|
table.value.getList(data)
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "./index";
|
|
</style>
|