{{ project.name }}
\ No newline at end of file
+// 点击跳转事件
+function MainMessage(){
+ router.push("/ProjectMessage")
+}
+
+
+
+// 根据选择的按钮过滤项目列表
+const filteredProjects = ref([]);
+// 根据选择的按钮过滤项目列表
+const selectedButtons = ref(['web','ai','大数据']);
+const selectionDisabled = ref('');
+const selectedStatus = reactive([-1,0,1,2]); // 选择的完成进度
+const clickedButton= ref(null)
+// 根据选择的完成进度过滤项目列表
+watch(() => selectedButtons.value, (clickedButton) => {
+ if (selectedButtons.value === 1){
+
+ }
+
+});
+
+gj
\ No newline at end of file