updates towards more customization
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user