QuackatronHQ / Gigarepo

Invalid destructuring of props JS-V005
Anti-pattern
Critical
1 occurrence in this check
Destructuring the props will cause the value to lose reactivity
20
21export default {
22  name: "header",
23  setup({ headerContent }) {24    return () => {
25      const visitors = ref(0);
26      visitors++;