/* auto, since non-WebKit browsers doesn't support input styling */
height:auto;
position:absolute;
top:0;
bottom:0;
margin:auto0;
border:none;
/* Mobile Safari */
-webkit-appearance:none;
appearance:none;
}
.todo-listli.toggle{
opacity:0;
}
.todo-listli.toggle+label{
/*
Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
<h3>Please click the bug icon in the upper right corner</h3>
<aside>
Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
// returned by the back end api is different from the front end
// back end return => "2013-06-25 06:59:25"
// front end need timestamp => 1372114765000
get(){
return(+newDate(this.postForm.display_time))
},
set(val){
this.postForm.display_time=newDate(val)
}
}
},
created(){
if(this.isEdit){
constid=this.$route.params&&this.$route.params.id
this.fetchData(id)
}else{
this.postForm=Object.assign({},defaultForm)
}
// Why need to make a copy of this.$route here?
// Because if you enter this page and quickly switch tag, may be in the execution of the setTagsViewTitle function, this.$route is no longer pointing to the current page