export function Totals totalsites totalsites number; const totals = totalsites; consolelog网站总:$totals; return totals Nextjs pagesindextsx 里面的数据在 componentsInfoTotaltsx 里显示出来完整代码
/pages/index.tsx
import { Totals } from '../components/InfoTotal';
export default function Home() { const totalSites = 10; return (
Welcome to my website
/components/InfoTotal.tsx
export function Totals({ totalsites }: { totalsites: number; }) {
const totals = totalsites;
console.log(网站总:${totals});
return (
Total websites: {totals}
); }原文地址: https://www.cveoy.top/t/topic/bvb1 著作权归作者所有。请勿转载和采集!