mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 12:22:03 +08:00
15 lines
168 B
Vue
15 lines
168 B
Vue
|
<template>
|
||
|
<Test></Test>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Test from './components/Test.vue';
|
||
|
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
components: {
|
||
|
Test,
|
||
|
},
|
||
|
};
|
||
|
</script>
|