confusedlator is a simple vue calculator web app.
this app will randomly moves its operators and numbers when it's clicked.
npm create vite@latest my-project -- --template vue
cd my-project
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
@tailwind base;
@tailwind components;
@tailwind utilities;
npm run dev
<template>
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
</template>