7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-09 03:28:58 +02:00

15 lines
288 B
Vue

<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>