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

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -