byteNative
Frontend

Vue

A lean, approachable framework for fast, reactive UIs.

What is Vue?

Vue is a lean, approachable framework that makes you productive refreshingly quickly. You build reactive interfaces with it elegantly and without much ceremony, because template, logic and style sit clearly together in one file. The Composition API still hands you enough tooling to bundle logic cleanly as complexity grows. We happily use it for well-scoped projects and anywhere an existing Vue setup needs to keep growing.

More in the documentation

How we use it

Vue is our pick when a project should get from concept to finished interface quickly, with little scaffolding. The gentle learning curve also helps if your own team wants to take over development later. And for existing Vue applications we are happy to be the hand that maintains and extends them.

html
<script setup>
import { ref } from "vue";
const count = ref(0);
</script>

<template>
    <button @click="count++">Clicks: {{ count }}</button>
</template>
a single-file component using script setup

Good to know

With the script setup syntax in single-file components a lot of boilerplate disappears, because imports and variables are automatically available in the template. That keeps components short and easy to read.

00Frontend

More tools we work with in the same area.

Which technology fits you?

You don't have to decide that, it's our job. Tell us about your plans.