是否可以将vue输入组件添加到标准html表单中?我知道这不是处理 vue 表单的理想方法,但我很好奇作为一种“快速而肮脏”的方式将自定义元素添加到预先存在的 html 表单中的可能性。这是一个假设的例子:
<form action="/users" accept-charset="UTF-8" method="post">
<input type="email" name="user[email]" />
<input type="password" name="user[password]" />
<my-custom-fancy-vue-component />
<input type="submit"value="Sign up">
</form>
我想知道浏览器是否可以读取 vue 组件中输入元素公开的值,并在用户提交表单时将其作为参数发送。是否有其他方法告诉浏览器如何从 vue 组件访问值,例如,如果它在内部不使用本机输入,可能使用 Web 组件作为包装器或使用 Shadow dom?
holdtom
相关分类