import router from ‘…/…/router/index’;
import { reactive, ref, getCurrentInstance, onMounted } from ‘vue’;
const { proxy } = getCurrentInstance(); //提问:老师这里大括号加和不加是什么区别呢
const header = reactive({
keyword: ‘’,
tags: [
{
label: ‘入职体检’,
type: ‘info’
},
{
label: ‘父母体检’,
type: ‘info’
},
{
label: ‘女士体检’,
type: ‘info’
}
]
});