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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -