English | 🇨🇳中文
Visit three-vue3.sunquakes.com.
pnpm i three
pnpm i three-vue3
- Import the desired components from
three-vue3
inmain.js
.
import ThreeVue3 from 'three-vue3'
Vue.use(ThreeVue3)
- Use it in
Vue 3
components.
<template>
<tv-scene class="scene"></tv-scene>
</template>
<script lang="ts" setup></script>
<style>
.scene {
margin-top: 10px;
width: 100%;
height: 300px;
}
</style>