Laravel + Vue.간단하게 js를 실현하다
ExampleComponent.vue를 표시해 보세요!
app.js를 (으)로 설정합니다.
resources/js/app.js
require('./bootstrap');
window.Vue = require('vue');
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
const app = new Vue({
el: '#app',
});
기본 웰컴.blade.php에 기술하다.<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ExampleComponent</title>
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
</head>
<body>
<div id="app">
<example-component></example-component>
</div>
<script src="{{ asset('js/app.js') }}"></script>
</body>
</html>
vue 파일을 작성하고 수정한 후 터미널에서 컴파일합니다.#コンパイル
npm run dev
#サーバーを立ち上げて確認
php artisan serve
표시됨!Vue를 새로 만듭니다.
1. vue 파일을 만듭니다.
resources/js/components/LaravelVue.vue
<template>
<div>
<h1>LaravelでVueを実装</h1>
<p>Good!!</p>
</div>
</template>
require('./bootstrap');
window.Vue = require('vue');
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
Vue.component('laravelvue', require('./components/LaravelVue.vue').default);
const app = new Vue({
el: '#app',
});
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>laravelvue</title>
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
</head>
<body>
<div id="app">
<laravelvue></laravelvue>
</div>
<script src="{{ asset('js/app.js') }}"></script>
</body>
</html>
매번 번역npm run dev
마다 귀찮아요.vue 파일 설명을 변경할 때마다 자동으로 컴파일됩니다
npm run watch
에서 설명한 대로 해당 매개변수의 값을 수정합니다.#コンパイル
npm run watch
command + T
에서 새 레이블이 서버를 시작합니다.#サーバーを立ち上げて確認
php artisan serve
표시됨!vue 파일에 대한 설명을 다시 변경합니다.
resources/js/components/LaravelVue.vue
<template>
<div>
<h1>LaravelでVueを実装できた!!</h1>
<p>Yeah!!</p>
</div>
</template>
npm run watch
감시, vue 파일의 설명이 변경되면 자동으로 컴파일됩니다.브라우저를 업데이트해 보세요!
업데이트 중입니다.
간단히 말하면, 있지만 조금만 참고하면 좋을 것 같아요.
Reference
이 문제에 관하여(Laravel + Vue.간단하게 js를 실현하다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Yoshi101-web/items/4ee1fefd2c1cee7780bf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)