基于vue3.0和element-plus的组件库
You can not 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>
|
|
|
|
<!-- <NoobTag>{{ t('title') }}</NoobTag>
|
|
|
|
<NoobTag type="success">{{ t('title') }}</NoobTag> -->
|
|
|
|
<GrafanaIframe :src="src" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { NoobTag, Http, GrafanaIframe } from "noob-mengyxu";
|
|
|
|
import { useI18n } from "vue3-i18n";
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { post } = Http.Axios2
|
|
|
|
const src = "http://10.100.0.108:3001";
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|