Skip to content

Instantly share code, notes, and snippets.

@jhammann
Created May 3, 2019 10:16
Show Gist options
  • Save jhammann/9afd673572dba31c26de1ae0dacf8ffd to your computer and use it in GitHub Desktop.
Save jhammann/9afd673572dba31c26de1ae0dacf8ffd to your computer and use it in GitHub Desktop.
A Vue mixin to slugify strings.
Vue.mixin({
methods: {
slugify(string) {
if (typeof string !== 'undefined') {
return string.toLowerCase()
.replace(/[^\w ]+/g, '')
.replace(/ +/g, '_');
}
return string;
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment