Webpack을 사용하여 Quasar 입문

소개



이번에는 Quasar CLI 또는 Vue CLI를 사용하지 않고 Quasar를 사용하는 방법을 소개합니다.

Vue.js가 도입 될 때까지 마지막 기사와 정확히 동일하기 때문에 여기를 참조하십시오.

Quasar 도입



먼저 npm을 사용하여 quasar를 설치합니다.

powershell
npm i -D quasar

그런 다음 Quasar UMD / Standalone의 Installation에서 사용하려는 것을 선택하고 출력 된 html의 link 태그를 복사하여 index.html에 붙여 넣습니다.

이번에는 기본 설정을 그대로 사용합니다.



index.html
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <!-- ↓↓↓ ここから追加 ↓↓↓ -->
        <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons" rel="stylesheet" type="text/css">
        <link href="https://cdn.jsdelivr.net/npm/quasar/dist/quasar.min.css" rel="stylesheet" type="text/css">
        <!-- ↑↑↑ ここまで追加 ↑↑↑ -->
        <title>Vue app</title>
    </head>
    <body>
        <div id="app"></div>
        <script src="bundle.js"></script>
    </body>
</html>

마지막으로 index.js에서 Quasar를로드하면 사용할 준비가 완료됩니다.

index.js
import Vue from 'vue'
import App from './components/App'
// ↓↓↓ ここから追加 ↓↓↓
import Quasar from 'quasar/dist/quasar.umd'
//↑↑↑ ここまで追加 ↑↑↑

new Vue({
  el: '#app',
  components: { App },
  template: '<app/>'
})

실제로 App.vue에서 Quasar의 Vue Components를 사용해보십시오.

App.vue
<template lang="html">
  <div>
    <p>Hello, world!!</p>
    <!-- ↓↓↓ ここから追加 ↓↓↓ -->
    <q-btn color="primary" label="Push!!"></q-btn>
    <!-- ↑↑↑ ここまで追加 ↑↑↑ -->
  </div>
</template>

npm start를 실행하면 다음과 같이 버튼이 표시된다고 생각합니다.


결론



따라서 Quasar CLI 또는 Vue CLI를 사용하지 않고도 Quasar를 쉽게 배포 할 수 있습니다.

좋은 웹페이지 즐겨찾기