javascript - How to get current year in vue.js? -


i want display ©year in webpage.

how do following in vue.js?

document.write(new date().getfullyear()) 

why not use text interpolation?

new vue({    el: '#app',  });
<script src="https://unpkg.com/vue/dist/vue.min.js"></script>    <div id="app">  ©{{ new date().getfullyear() }}  </div>


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -