基于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.

15 lines
363 B

2 years ago
<template>
2 years ago
<NoobTag>{{ t('title') }}</NoobTag>
<NoobTag type="success">{{ t('title') }}</NoobTag>
2 years ago
</template>
<script lang="ts" setup>
2 years ago
import { NoobTag, Http } from "noob-mengyxu";
import { useI18n } from "vue3-i18n";
const { t } = useI18n();
const { post } = Http.Axios2
2 years ago
</script>
<style lang="scss" scoped>
//@import url(); 引入公共css类
</style>