import { ref } from 'vue' interface CounterProps { step: number } function Counter(props: CounterProps) { const count = ref(0) vineStyle.scoped(` .action-btn { padding: .413rem 1rem; border: 1px solid #88888850; background-color: transparent; user-select: none; cursor: pointer; } `) return vine`

Count: {{ count }}

` } export function Home() { return vine` ` }