基于现代技术栈 构建未来营养

采用业界领先的前端技术,确保网站性能、安全性和可维护性

Vue.js

现代化的JavaScript框架

Ant Design vue

大厂产品默认UI框架

Axios

高效的HTTP请求设计

Print-js

快速、灵活、可样式定制

index.vue
1<template>
2 <div class="app">
3 <NuxtPage />
4 </div>
5</template>
6
7<script setup lang="ts">
8import { ref } from 'vue'
9
10const app = ref('Modern Website')
11</script>