Updated 2 weeks ago
NYC team · same business day
View live demo →
Specs

What's in the box.

Frameworks
7
all included
License
Personal
1 commercial site
Updates
Lifetime
free, quarterly

Soapia Vue is a feature-rich Beauty & Personal Care E-Commerce HTML5 web application built as a fully functional Vue 3 app using the Composition API, Vite, and Bootstrap 5. It ships with 23+ view components, a filterable photo gallery, a full e-commerce module with cart and checkout, a countdown timer, written entirely with script setup and the Composition API — zero Options API usage.

Built for Vue developers delivering beauty & personal care e-commerce html5 sites and applications. The codebase uses Vue 3 Composition API throughout — ref(), reactive(), computed(), watch(), and composables for shared logic. Single File Components (.vue) keep template, script setup, and scoped styles co-located. Replace the static JSON data sources with any REST API or headless CMS and the reactive layer adapts immediately.

Everything in the Package

  • 23+ view-level Single File Components with Vue Router 4 history mode routing
  • Vue 3 with script setup syntax and Vite — fast HMR dev server and optimised production build
  • Vue Router 4 — history mode with lazy-loaded routes via defineAsyncComponent
  • Pinia store for global state management — state, getters, and actions with localStorage persist plugin
  • Bootstrap 5 — responsive grid and utility classes
  • VeeValidate 4 — schema-based form validation with v-model two-way binding on all forms
  • Swiper Vue — touch-friendly carousels via SwiperSlide components
  • All data sourced from typed JSON in src/data/ — swap to fetch() or axios for live API
  • Scoped CSS inside each .vue file — no global style bleed between components
  • Retina-ready, fully responsive from 320px to 1920px+
  • Vue DevTools compatible — Pinia store fully inspectable in browser

Composition API and Component Architecture

  • All views use script setup — defineProps, defineEmits, ref(), computed(), and watch()
  • Composables encapsulate reusable logic — useFilter, useCart, useForm, and feature-specific hooks
  • Pinia store: defineStore with typed state, computed getters, and async actions
  • defineAsyncComponent applied to secondary view bundles — route-level code splitting
  • v-model, v-for, v-if, v-show used throughout — idiomatic Vue 3 template syntax
  • storeToRefs used for reactive destructuring of Pinia store properties in setup()
  • Folder structure: src/views/, src/components/, src/composables/, src/stores/, src/data/

All 23 Views

  • /home-v1 — v5 — Five distinct hero and beauty showcase layouts
  • /about — Brand story and beauty philosophy
  • /shop-left — Shop with left sidebar filter
  • /shop-right — Shop with right sidebar filter
  • /shop-details — Individual product page
  • /checkout — Purchase completion page
  • /contact — Contact form and order enquiry

Key Features

  • 23 Fully Designed HTML5 Pages across home, shop, product, checkout, and contact
  • 5 Unique Home Layouts — distinct hero styles and beauty showcase arrangements
  • Bootstrap — responsive, mobile-first grid system
  • Shop with Sidebar Variants — left sidebar and right sidebar shop filter layouts
  • Product Detail Pages — individual beauty product page with gallery
  • Checkout — purchase completion page
  • ionRangeSlider — price range filtering for product browsing
  • Swiper Carousel — featured product and beauty collection sliders
  • Countdown Timer — animated sale and promotion countdowns
  • Magnific Popup Lightbox — full-screen product and beauty image popup
  • Flaticon Icon Set — comprehensive icon library for beauty retail UI
  • Well Documented — step-by-step documentation for easy setup & customisation

Performance and SEO

  • useHead (VueUse) sets per-route title and meta description reactively for SEO
  • defineAsyncComponent and Suspense code-split secondary view bundles on route change
  • Vite production build applies Rollup tree-shaking, chunk splitting, and asset fingerprinting
  • All images carry descriptive :alt bindings meeting WCAG 1.1.1
  • Google Fonts loaded with font-display: swap to prevent invisible-text flash

Use Cases

  • Beauty & Personal Care E-Commerce HTML5 Businesses: Fast Vue 3 SPA with Composition API — reactive, composable, and easy to maintain
  • Vue Developers: Composables, Pinia stores, and Vue Router 4 patterns — production architecture from day one
  • Freelancers and Agencies: Deliver a polished beauty & personal care e-commerce html5 site to clients with Vite build tooling and DevTools support
  • Startups: Lightweight bundle, defineAsyncComponent code-splitting, and VeeValidate forms ready to go

Credits and Dependencies

  • Vue 3 — MIT License
  • Vite — MIT License
  • Vue Router 4 — MIT License
  • Pinia — MIT License
  • VeeValidate 4 — MIT License
  • Bootstrap 5 — MIT License
  • Swiper Vue — MIT License
  • Swiper — MIT License
  • Countdown — MIT License
  • Magnific — MIT License
  • Lightbox — MIT License
  • ionRange — MIT License
  • Font Awesome 6 — Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT
  • Google Fonts — SIL Open Font License
  • Demo images: Unsplash — Unsplash License (free for commercial use, no attribution required)
  • Demo images: Freepik — Freepik License (free for commercial use with attribution)
  • All demo images are for preview purposes only and are NOT included in the download.
v1.0  Initial Vue Release
- Vue 3 Composition API with script setup syntax throughout
- Vite build tooling with fast HMR and optimised production output
- 23+ view-level Single File Components with Vue Router 4 history mode
- Pinia store with localStorage persist plugin for global state management
- VeeValidate 4 schema-based form validation on all form views
- defineAsyncComponent route-level code splitting on secondary views
- useHead per-route SEO meta tags via VueUse

Production code · accessibility ready

Open the source. Read the actual code.

Every Soapia — Charity Vue.js Template template ships hand-written, semantic, and accessibility-ready. Tabs preserved. Comments in plain English. BEM naming. WCAG 2.2 AA tested. No spaghetti, no inline JavaScript scattered through the document. Your team extends without rewriting — and your users get a site that works for screen readers, keyboard navigation, and reduced-motion preferences out of the box.

Semantic HTML5Real <section> / <article> / <nav> tags — not div soup.
WCAG 2.2 AA accessibilityReal ARIA, focus order, 4.5:1+ color contrast, keyboard nav.
BEM class systemPredictable naming so your team can extend without breaking.
Reduced-motion respectedprefers-reduced-motion media query disables non-essential transitions.
Skip-link + landmark rolesScreen-reader-friendly navigation at every page top.
Lighthouse 100 a11yAudited per release. Default install scores 100 / 96 / 100 / 100.
hero.html hero.css hero.js
soapia-charity-vue-js-template/hero · v1.0.0 · WCAG 2.2 AA
1<!-- Soapia — Charity Vue.js Template hero — semantic, accessible, AICE-priced -->
2<section class="hero hero--cover" role="region" aria-label="Featured">
3 <div class="hero__inner">
4 <h1 class="hero__h1">Built for businesses <em>that ship</em></h1>
5 <a class="btn btn--primary" href="/shop">Shop now</a>
6 </div>
7</section>
8
9/* hero.css — focus-visible & reduced-motion respected */
10.hero :focus-visible { outline: 2px solid var(--c-cyan); }
11@media (prefers-reduced-motion: reduce) { .hero * { animation: none !important; } }
12
13// AICE rebuild cost manifest
14const aice = { claude: '$2,400', buy: '$18' };
Changelog · 1 version

What's changed.

  • Initial release.
  • Vue 3 with Composition API; reactive state and reusable components.
  • Detailed documentation included with quick-start guide.
Tags
Customer reviews · 0 verified

What customers actually said.

No reviews yet — be the first.

Managed launch · 2 hosting tiers · NYC infrastructure

Don’t have hosting? We launch Soapia — Charity Vue.js Template for you.

Skip cPanel. Skip the FTP upload. Skip the DNS configuration. Each hosting tier includes the install, plugin config, and your domain pointed live in 24 hours. Same NYC team that built the template handles your launch.

99.9%Uptime SLA
24hSetup time
NYCSame-day support
Starter
$9.99/mo
  • 1 Website
  • 10 GB Storage
  • Free SSL
  • 1 Database
Deluxe
$27.99/mo
  • 10 Websites
  • 50 GB Storage
  • Free SSL (all sites)
  • 25 Databases
Ultimate
$35.99/mo
  • 25 Websites
  • 75 GB Storage
  • Free SSL (all sites)
  • 50 Databases
Launch
$62.99/mo
  • 100 GB Storage
  • 4 GB RAM
  • 2 CPUs
  • Free SSL
Grow
$155.99/mo
  • 300 GB Storage
  • 16 GB RAM
  • 8 CPUs
  • Free SSL
Expand
$217.99/mo
  • 400 GB Storage
  • 32 GB RAM
  • 16 CPUs
  • Free SSL

Free SSL · 99.9% uptime · 24/7 support · No domain included

Every tier includes — NYC infrastructure

99.9%Uptime SLAMonitored 24/7
24hSetup timeSame business day
SSLHTTPS day oneAuto-renewed
CDNGlobal edge cache15 PoPs worldwide
DailyAuto backups30-day retention
NYCStudio supportSame-day response

Get $5 off Soapia — Charity Vue.js Template + free Bootstrap 5 starter kit.

Plus weekly drops from the studio · AICE reports · early access to new templates before they hit the catalog.

Soapia — Charity Vue.js Template
$18 · Vue Templates