我刚开始学习紫杉(前端框架(。如何将每个组件都放在单独的文件中,就像在js框架中一样。(我现在正在使用功能组件(
假设您有一个像src/components/text.rs
这样的文件,创建一个名为components.rs的文件,并包含这样的模块:
pub mod Text;
然后,在main.rs中,您可以使用mod components;
在项目的其他地方使用Text,比如:
use crate::components::text::Text