feat: 已下架标签隐藏配方,搜索/列表/收藏均过滤

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-12 10:19:05 +00:00
parent 6752b27f99
commit f149154a56
2 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import { defineStore } from 'pinia'
import { ref } from 'vue'
import { api } from '../composables/useApi'
export const EDITOR_ONLY_TAGS = ['已审核']
export const EDITOR_ONLY_TAGS = ['已审核', '已下架']
export const useRecipesStore = defineStore('recipes', () => {
const recipes = ref([])