我正在尝试将这个datepicker用于我的vue.js项目。 https://codepen.io/amsul/pen/nGckA
我的问题是,因为我不能只将.js复制并粘贴到块中,所以我需要做的是从Codepen中获取js代码段,并与我的项目一起工作。我可以将所有内容放到一个vue.js方法中吗?
<template>
<fieldset>
<input type="text" id="input_from">
</fieldset>
<fieldset>
<input type="text" id="input_to">
</fieldset>
</template>
<script>
// copy and paste datepicker js here?
export default {
methods: {}
}
</script>
<style>
body {
font-family: sans-serif;
font-weight: 200;
font-size: 18px;
line-height: 1.5;
max-width: 540px;
margin: 0 auto;
padding: 2em 0;
}
fieldset {
margin: 1em 0;
border: 0;
padding: 0;
position: relative;
}
input {
font-size: 1em;
font-family: sans-serif;
font-weight: 200;
border: 2px solid #999;
padding: .75em 1em;
display: block;
width: 100%;
box-sizing: border-box;
margin: 0;
}
input:focus {
border-color: #0089ec;
}
a {
color: #0089ec;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.whitespace:before {
content: "...some content here...";
color: #ccc;
background: #f5f5f5;
margin: 1em 0;
padding: 5em 0;
font-weight: bold;
font-size: 1.5em;
letter-spacing: 2px;
text-align: center;
display: block;
text-transform: uppercase;
}
</style>