22 lines
374 B
Vue
22 lines
374 B
Vue
<template>
|
|
<SunTime :skin="skin" :lat="lat" :lon="lon" />
|
|
</template>
|
|
|
|
<script>
|
|
import SunTime from "./components/SunTime.vue";
|
|
|
|
export default {
|
|
name: "SunscreenPage",
|
|
components: {
|
|
SunTime,
|
|
},
|
|
data: function () {
|
|
return {
|
|
skin: this.$route.params.skin,
|
|
lat: this.$route.params.lat,
|
|
lon: this.$route.params.lon,
|
|
};
|
|
},
|
|
};
|
|
</script>
|