Webpack을 사용하여 Quasar 입문
소개
이번에는 Quasar CLI
또는 Vue CLI
를 사용하지 않고 Quasar를 사용하는 방법을 소개합니다.
Vue.js가 도입 될 때까지 마지막 기사와 정확히 동일하기 때문에 여기를 참조하십시오.
Quasar 도입
먼저 npm을 사용하여 quasar를 설치합니다.
powershellnpm 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.jsimport 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를 쉽게 배포 할 수 있습니다.
Reference
이 문제에 관하여(Webpack을 사용하여 Quasar 입문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/Midoliy/items/b7475fde16c0231fbfb9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
먼저 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를 쉽게 배포 할 수 있습니다.
Reference
이 문제에 관하여(Webpack을 사용하여 Quasar 입문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/Midoliy/items/b7475fde16c0231fbfb9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Webpack을 사용하여 Quasar 입문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Midoliy/items/b7475fde16c0231fbfb9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)