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.
|
<template>
|
|
<div v-if="env == 'development'">
|
|
<svg-icon icon-class="bug" @click="router.push({ path: '/test/index' })" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useRouter } from "vue-router";
|
|
const router = useRouter();
|
|
const env = import.meta.env.VITE_APP_ENV;
|
|
</script>
|