javascript - How can I use Blade in Vue files? - Stack Overflow

I'm trying to use Blade in my Vue file carousel-signUp.vueLike:<template><div>

I'm trying to use Blade in my Vue file carousel-signUp.vue

Like:

<template>
    <div>           
        <form action="{{route('dump')}}" method="POST" >
           /* Some code here...*/
        </form>
   </div>
</template>

But in the end I'm getting an error.

The piler can't understand the difference between Vue syntax and Blade syntax. How can I define Blade syntax in Vue files?

Or, does anyone have an idea how to use {{route('dump')}} value in my vue file?

I'm trying to use Blade in my Vue file carousel-signUp.vue

Like:

<template>
    <div>           
        <form action="{{route('dump')}}" method="POST" >
           /* Some code here...*/
        </form>
   </div>
</template>

But in the end I'm getting an error.

The piler can't understand the difference between Vue syntax and Blade syntax. How can I define Blade syntax in Vue files?

Or, does anyone have an idea how to use {{route('dump')}} value in my vue file?

Share Improve this question edited Jul 18, 2017 at 12:07 Dwayne Charrington 6,6328 gold badges43 silver badges63 bronze badges asked Jul 18, 2017 at 10:04 Mahdi ToosiMahdi Toosi 3952 gold badges4 silver badges13 bronze badges 2
  • Blade cannot be used in vue files. – Ikbel Commented Jul 18, 2017 at 10:10
  • have any idea for using {{route('dump')}} value in my vue file ?? :( – Mahdi Toosi Commented Jul 18, 2017 at 10:58
Add a ment  | 

4 Answers 4

Reset to default 5

A better solution might be to output the desired blade variables to (hidden) html and select that html in your Vue code. Escape the curly braces for Vue with @.

Your blade example.blade.php

<div id="content" hidden>
    {{ bladeVar }}
</div>

<div id="app">
    @{{ vueVar }}
</div>

The result of that blade (how it will look in the cached file) + javascript (Vue)

var app = new Vue({
    el: '#app',
    data: {
        vueVar: document.getElementById('content').innerHTML + 'from Vue'
    }
});
<script src="https://unpkg./vue"></script>
<div id="content" hidden>
    Hello world
</div>

<div id="app">
    {{ vueVar }}
</div>

I found a post having the same issue as you

You can't use blade in your Vue files, but you can use Vue slots so you can send the content from your blade file to the ponent:

Vue file

<template>
    <div>           
        <slot></slot>
    </div>
</template>

Blade

<carousel-sign-up>
    <form action="{{route('dump')}}" method="POST" >
        /* Some code here...*/
    </form>
</carousel-sign-up>

This will be useful when your ponents should have dynamic content. If in that ponent you only will need that route from blade and the form will be ever the same, look at @Mick answer.

You can parse your data to Json and then you can redirect your blade to vue Companent. I will mention below about it.

<your-panent data={{$yourDataFromBackEnd}}></your-panent>

Like that, you can catch as "data" in Vue if you have experience on VueJs.

You could pass the "{{route('dump')}}" as a prop to the ponent.

<ponent route="/yourRouteHere"> </ponent>

https://v2.vuejs/v2/guide/ponents.html#Props

Mick

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743677258a4488774.html

相关推荐

  • javascript - How can I use Blade in Vue files? - Stack Overflow

    I'm trying to use Blade in my Vue file carousel-signUp.vueLike:<template><div>

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信