Quasar Counter with Toggle Theme - Quasar-framework Typing CST Test
Loading…
Quasar Counter with Toggle Theme — Quasar-framework Code
Switches between dark and light theme for the counter.
<template>
<q-page class="flex flex-center">
<div class="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>
<q-btn color="warning" class="q-mt-md" @click="toggleTheme">Switch Theme</q-btn>
</div>
</q-page>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
const isDark = ref(false);
const increment = ()=>count.value++;
const decrement = ()=>count.value--;
const reset = ()=>count.value=0;
const toggleTheme = ()=>{
isDark.value = !isDark.value;
document.body.className = isDark.value ? 'bg-dark text-white' : '';
};
</script>
<style>.bg-dark{background:#333;color:#fff;}</style>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.