Trying to use vue-moment. The simplest possible example from the documentation doesn\'t work: https://jsfiddle.net/rjcpz9wt/
{{ new Date() | moment \
I wouldn't suggest doing it the way you are, you should create the date variable in the javascript code and just access the variable in your Vue. Here is a fiddle showing what I mean
https://jsfiddle.net/rdffywc7/
var app = new Vue({
el: document.body,
data: {
date: moment().format("ffffdd, MMMM Do YYYY")
}
})
and then in the doc body
{{ date }}