updates towards more customization

This commit is contained in:
Ginger Wong
2020-06-18 10:24:54 -07:00
parent d15080db11
commit b39824b8c3
6 changed files with 78 additions and 44 deletions

View File

@@ -1,11 +1,5 @@
async function setupApp() {
Vue.filter('plural', function (string, count) {
if (count === 1) {
return string;
} else {
return string + "s";
}
})
Vue.filter('plural', pluralize);
window.app = new Vue({