oboard / buder-vue-bridge

This is a bridge between Vue.js and Buder. It allows you to use Vue.js components in Buder projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Buder-Vue-Bridge

This is a bridge between Vue.js and Buder. It allows you to use Vue.js components in Buder projects.

import HelloWorld from "./helloworld.vue";

VueBridge(HelloWorld, { text: "Hello, World!" });
<template>
  <div>
    <h1>{{ text }}</h1>
  </div>
</template>

<script lang="ts">
defineProps({
  text: {
    type: String,
  },
});
</script>

About

This is a bridge between Vue.js and Buder. It allows you to use Vue.js components in Buder projects.


Languages

Language:TypeScript 64.9%Language:CSS 21.4%Language:HTML 8.8%Language:Vue 4.9%