2017-08-04 59 views
1

如何在單獨的文件中寫入Vue js代碼幷包含在laravel中 刀片頁面代碼?如何在單獨的文件中寫入Vue js代碼幷包含在laravel中

我也在使用gulp文件。

@section('js') 
<script> 
    new Vue({ 

     // Defining a element. 
     el: '#branddashboard-html', 

     data: { 

      // Defining data variable. 
      brandStats: null 
     }, 

     // On load functionality. 
     created: function() { 

      // Initializing method. 
      this.getData(); 

     }, 


     }, 

     // Methods to implement. 
     methods: { 

      getData: function() { 

       self.brandStats = null; 

       $.get('brand-stats/' + userId + '/' + period, function (data) { 
        self.brandStats = data; 

       }); 
      } 
     } 
    }); 
</script> 
@endsection 

回答

0

我覺得這是沒有最好的主意。我認爲,刀片模板只能在視圖文件夾中工作。您的前端邏輯現在通過Vue Component System以MVVM vue的方式進行管理。希望這對你有用

相關問題