Quasar Counter with Toolbar - Quasar-framework Typing CST Test
Loading…
Quasar Counter with Toolbar — Quasar-framework Code
Counter example using a Quasar toolbar at the top.
<template>
<q-page>
<q-toolbar class="bg-primary text-white">
<q-toolbar-title>Counter App</q-toolbar-title>
</q-toolbar>
<div class="q-pa-md text-center">
<h2>{{ count }}</h2>
<q-btn color="primary" @click="increment">+</q-btn>
<q-btn color="negative" @click="decrement">-</q-btn>
<q-btn color="secondary" @click="reset">Reset</q-btn>
</div>
</q-page>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
const increment = () => count.value++;
const decrement = () => count.value--;
const reset = () => count.value = 0;
</script>Quasar-framework Language Guide
Quasar Framework is a Vue.js-based framework that allows developers to build high-performance, responsive web apps, mobile apps (via Cordova/Capacitor), and desktop apps (via Electron) using a single codebase.
Primary Use Cases
- ▸Vue.js web applications (SPA and SSR)
- ▸Progressive Web Apps (PWA)
- ▸Mobile apps via Cordova or Capacitor
- ▸Desktop apps via Electron
- ▸Cross-platform apps from a single codebase
Notable Features
- ▸Prebuilt Vue components
- ▸Responsive grid and layout system
- ▸Multi-platform support (Web, Mobile, Desktop)
- ▸Themeable design with light/dark modes
- ▸CLI tools for scaffolding and building apps
Origin & Creator
Created by Razvan Stoenescu in 2015 to enable multi-platform app development with Vue.js.
Industrial Note
Quasar is widely used for enterprise dashboards, mobile hybrid apps, PWAs, and Electron-based desktop applications built with Vue.js.