You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
299 B
Vue

<template>
<g class="planetary">
</g>
</template>
<script setup>
import { ref } from 'vue'
defineProps({
name: String,
size: Number,
type: String, // TODO
moons: Object, // moons: { name, size as fraction of planet size }
})
</script>
<style scoped>
a {
color: #42b983;
}
</style>