mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<template>
|
|
<div class="app">
|
|
<ul class="navbar">
|
|
<li v-for="t in tests" :key="t" @click="test=t">{{ t }}</li>
|
|
</ul>
|
|
<component :is="test" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Test1 from './components/Test1.vue';
|
|
import Test2 from './components/Test2.vue';
|
|
import Test3 from './components/Test3.vue';
|
|
import TestGLTF from './components/TestGLTF.vue';
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Test1, Test2, Test3, TestGLTF,
|
|
},
|
|
data() {
|
|
return {
|
|
tests: ['Test1', 'Test2', 'Test3', 'TestGLTF'],
|
|
test: 'Test2',
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app {
|
|
.navbar {
|
|
position: fixed;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
|
|
li {
|
|
display: inline-block;
|
|
margin: 1em;
|
|
padding: 5px;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
color: #000;
|
|
border-radius: 5px;;
|
|
cursor: pointer;
|
|
transition: background-color 0.4s;
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|