Vue js 2无线电输入未保留其选择

时间:2017-02-23 05:03:35

标签: javascript forms vue.js vuejs2

我正在使用Vue v2创建一个多步骤表单,并且无线电输入不会在步骤之间来回保持所选值。 Vue v1可以处理这个问题。我可以使用v1,但如果可能的话,我想留在v2上。

v1: http://codepen.io/anthonyholmes/pen/PpYvNB

v2: http://codepen.io/anthonyholmes/pen/qrWvaM

1 个答案:

答案 0 :(得分:1)

输入字段似乎hive> select regexp_replace('123,56€','(\\d+),(\\d+).','$1.$2'); OK 123.56 hive> select cast(regexp_replace('123,56€','(\\d+),(\\d+).','$1.$2') as decimal(12,2)); OK 123.56 是冲突的,由于这个问题正在发生,我已经删除了这些,这很好用。请参阅pen

只需使用:

var waypoint = new Waypoint({
            element: $(".test")[2],
            handler: function(direction) {
                alert('Scrolled to test4!'+direction);
            },
            offset: '20%'
                //offset:100 //offset top  you should append this property.
        })