building-vue-apps

Installation
SKILL.md

Vue.js

Quick Start

<script setup lang="ts">
import { ref, computed } from 'vue';

const count = ref(0);
const doubled = computed(() => count.value * 2);
</script>

<template>
  <button @click="count++">
    Count: {{ count }} (doubled: {{ doubled }})
  </button>
</template>
Installs
6
GitHub Stars
4
First Seen
Mar 10, 2026
building-vue-apps — doanchienthangdev/omgkit