Learn how to install TresJS
::: code-group
pnpm add three @tresjs/core -D
npm install three @tresjs/core -D
yarn add three @tresjs/core -D
:::
Better use with Vue 3.x and composition API
You can install TresJS as any other Vue plugin
import { createApp } from 'vue'
import App from './App.vue'
import Tres from '@tresjs/core'
export const app = createApp(App)
app.use(Tres)
app.mount('#app')
Soon.