Created
March 7, 2022 12:45
-
-
Save Idered/31be8ea5bf2f033ebb07c2a3ea2a8ba0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<slot :env="env" /> | |
</template> | |
<script setup lang="ts"> | |
const env = computed(() => | |
Object.entries(import.meta.env).reduce( | |
(acc, [key, value]) => ({ | |
...acc, | |
[key]: value, | |
}), | |
{} as ImportMetaEnv, | |
), | |
) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment