[READ-ONLY] Mirror of https://github.com/danielroe/vuejs-de. vuejs-de.netlify.app/
0

Configure Feed

Select the types of activity you want to include in your feed.

vuejs-de / components / Cat.client.vue
310 B 14 lines
1<template> 2 <Renderer 3 height="800" 4 :orbit-ctrl="{ autoRotate: true, enableDamping: true }" 5 alpha 6 antialias 7 > 8 <PerspectiveCamera :position="{ x: 1, y: 3, z: 8 }" /> 9 <Scene> 10 <AmbientLight /> 11 <GltfModel src="/hipster-clay-cat.gltf" /> 12 </Scene> 13 </Renderer> 14</template>