7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-03 09:48:59 +02:00
2018-12-30 15:31:41 -08:00

12 lines
257 B
TypeScript

import Vue from 'vue';
export default Vue.component('csrf', {
data: function () {
return {
X_CSRF_TOKEN: window.X_CSRF_TOKEN,
};
},
template: `<input type="hidden" name="_token" v-bind:value="X_CSRF_TOKEN" />`,
});