Add csrf component

This commit is contained in:
Dane Everitt 2018-03-31 16:44:20 -05:00
parent 598bae7b70
commit 94710934b9
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<template>
<input type="hidden" name="_token" v-bind:value="X_CSRF_TOKEN" />
</template>
<script>
export default {
name: 'csrf',
data: function () {
return {
X_CSRF_TOKEN: window.X_CSRF_TOKEN,
};
},
}
</script>