remove coin animatins variabels

This commit is contained in:
ogerly 2022-03-28 12:18:05 +02:00
parent bd63d16340
commit dbc63d744e

View File

@ -1,39 +1,18 @@
<template>
<div id="app" class="font-sans text-gray-800">
<div>
<component :is="$route.meta.requiresAuth ? 'DashboardLayout' : 'AuthLayoutGDD'" />
</div>
<div id="app" :class="$route.meta.requiresAuth ? 'font-sans text-gray-800' : ''">
<component :is="$route.meta.requiresAuth ? 'DashboardLayout' : 'AuthTemplate'" />
</div>
</template>
<script>
import icon from './icon.js'
import DashboardLayout from '@/layouts/DashboardLayout_gdd.vue'
import AuthLayoutGDD from '@/layouts/AuthLayout_gdd.vue'
import AuthTemplate from '@/layouts/AuthTemplate.vue'
export default {
name: 'app',
components: {
DashboardLayout,
AuthLayoutGDD,
},
data() {
return {
config: {
num: [1, 7],
rps: 15,
radius: [5, 50],
life: [6.5, 15],
v: [1, 1],
tha: [-40, 40],
body: icon,
alpha: [0.6, 0],
scale: [0.1, 0.4],
position: 'all',
cross: 'dead',
random: 2,
},
}
AuthTemplate,
},
}
</script>