刺激图书馆 源码
刺激图书馆 | 安装 首先,您需要将stimulus-library程序包添加到您的项目中。 为此,请手动将stimulus-library添加到package.json { " dependencies " : { " stimulus-library " : " latest " } } 或运行npm install --save stimulus-library或yarn add stimulus-library 然后,开始导入并注册要使用的控制器 import { Application } from "stimulus" ; import { AutoSubmitFormController } from "stimulus-library" ; const application = Application . start ( ) ; applicati
用户评论