<body>
<div id="test">
<textarea v-model="com_text"></textarea>
{{ csrf_field() }}
<button v-on:click="add_comm">Отправить</button>
</div>
</body>
new Vue({
el: '#test',
methods: {
add_comm: function (){
axios.post('/comment', {
text: 'test',
})
...