所以我在 vueJs 中并不专业,这就是为什么如果您需要更多额外信息,只需在评论中写下我会尝试提供它......这就是我安装这个插件的方式
import VueFormulate from '@braid/vue-formulate';
Vue.use(VueFormulate);
在我想使用这个插件的模板中
<FormulateInput
type="email"
name="email"
label="Enter your email address"
help="We’ll send you an email when your ice cream is ready"
validation="required|email"
/>
但是在浏览器页面上什么都没有,我在渲染的页面树中看到了什么
<formulateinput
type="email"
name="email"
label="Enter your email address"
help="We’ll send you an email when your ice cream is ready"
validation="required|email">
</formulateinput>
所以我可以看到它没有被渲染。
一个小插曲。当我想使用插件的组件安装然后在控制台插件对象中输出时,它退出
mounted() {
console.log(VueFormulate);
}
你能帮我找到我想念的吗?:3