如何使用framework7和vuejs获取datepicker的值?

时间:2019-07-13 15:22:28

标签: javascript vue.js vuejs2 html-framework-7

我有以下内容:

<f7-list-input
label=“Fecha de nacimiento”
type=“datepicker”
placeholder=“Selecciona una fecha”
:value=“perfil.fecha_nacimiento”
@input=“perfil.fecha_nacimiento = $event.target.value”
:calendar-params=“parametrosCalendario”
>

<f7-button class=“button button-big button-fill”
@click=“editarPerfil(perfil)”>Guardar   </f7-button>

脚本:

 data(){
            return {
                perfil: {
                    fecha_nacimiento: ''
                },
    },
   methods:{
    editarPerfil(perfil){
            let vm = this;
            console.log(perfil); //When printing in console, profile, birthdate, this gap.

        },
}

但是当我获取出生日期的信息时,我无法获取。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用javascript:

var calendar = app.calendar.get(element_selector); // Get the calendar instance
var values = calendar.getValue();   //Returns current calendar value

您也可以在官方文档中找到它: Framework7 calendar docs