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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -