0

所以我在 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

4

2 回答 2

1

主要问题在于模板标签。

并且我的模板中的 VueFormulate 组件必须小写,连字符分隔并带有结束标记

<formulate-input
  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"
></formulate-input>

代替

<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"
/>

有关语法样式的更多信息:

https://vuejs.org/v2/style-guide/#Component-name-casing-in-templates-strongly-recommended

在此处输入图像描述

于 2020-07-06T14:56:01.003 回答
0

试试这个工作代码:

应用程序.js

<template>
  <div id="app">
  <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"
/></div>
</template>

<script>
import Vue from "vue";
import VueFormulate from '@braid/vue-formulate';
Vue.use(VueFormulate);

export default {
  name: "App",
};
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

Main.js 必须是这样的:

import Vue from "vue";
import App from "./App.vue";

new Vue({
  render: h => h(App)
}).$mount("#app");

它实际上渲染组件但没有样式!如果要使用组件样式,请编写:

@import '../node_modules/@braid/vue-formulate/themes/snow/snow.scss';

在您的 scss 样式文件中或在您的项目中导入https://github.com/wearebraid/vue-formulate/blob/master/dist/snow.min.css

于 2020-07-02T11:53:02.477 回答