Vue Custom Element ไม่สามารถสร้างไฟล์ JS แบบสแตนด์อโลนใน Dist

ฉันทำตามคำแนะนำในการลงทะเบียนและใช้องค์ประกอบที่กำหนดเองที่นี่:

https://alligator.io/vuejs/custom-elements/

ฉันใช้เทมเพลต Webpack มาตรฐานสำหรับ Vue

เมื่อฉันวิ่ง

npm run build

ฉันคาดว่าจะได้รับไฟล์คอมโพเนนต์ของเว็บที่เรียกว่า element.js ในไดเร็กทอรี dist ไม่มีอะไรเกิดขึ้นแม้ว่า ไม่มีใครรู้ว่ามีขั้นตอนเพิ่มเติมที่จำเป็นหรือไม่? เอกสารไม่ได้ระบุสิ่งนี้ชัดเจน

สิ่งนี้สร้างไฟล์ต่อไปนี้ในโครงการของฉัน:

<template>
  <div id="app">
    <example myProp="I can pass props!"></example>

  </div>
</template>

<script>
import Example from './components/example.Vue'

export default {
  name: 'app',
  components: {
    Example
  }
}
</script>

<style>
</style>

main.js

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import vueCustomElement from 'vue-custom-element'

Vue.config.productionTip = false

Vue.use(vueCustomElement);
/* eslint-disable no-new */

import Example from './components/Example.vue';

// Configure Vue to ignore the element name when defined outside of Vue.
Vue.config.ignoredElements = [
    'example-component'
];

// Enable the plugin
Vue.use(vueCustomElement);

// Register your component
Vue.customElement('example-component', Example, {
    // Additional Options: https://github.com/karol-f/vue-custom-element#options
});


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

ส่วนประกอบ/example.vue

<template>
  <p>Dynamic prop value: {{myProp}}</p>
</template>

<script>
export default {
  props: ['myProp']
}
</script>

แพ็คเกจ.json

{
  "name": "example",
  "version": "1.0.0",
  "description": "A Vue.js project",
  "author": "",
  "private": true,
  "scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "build": "node build/build.js"
  },
  "dependencies": {
    "vue": "^2.5.2",
    "vue-custom-element": "^2.0.0"
  },
  "devDependencies": {
    "autoprefixer": "^7.1.2",
    "babel-core": "^6.22.1",
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
    "babel-loader": "^7.1.1",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-runtime": "^6.22.0",
    "babel-plugin-transform-vue-jsx": "^3.5.0",
    "babel-preset-env": "^1.3.2",
    "babel-preset-stage-2": "^6.22.0",
    "chalk": "^2.0.1",
    "copy-webpack-plugin": "^4.0.1",
    "css-loader": "^0.28.0",
    "extract-text-webpack-plugin": "^3.0.0",
    "file-loader": "^1.1.4",
    "friendly-errors-webpack-plugin": "^1.6.1",
    "html-webpack-plugin": "^2.30.1",
    "node-notifier": "^5.1.2",
    "optimize-css-assets-webpack-plugin": "^3.2.0",
    "ora": "^1.2.0",
    "portfinder": "^1.0.13",
    "postcss-import": "^11.0.0",
    "postcss-loader": "^2.0.8",
    "rimraf": "^2.6.0",
    "semver": "^5.3.0",
    "shelljs": "^0.7.6",
    "uglifyjs-webpack-plugin": "^1.1.1",
    "url-loader": "^0.5.8",
    "vue-loader": "^13.3.0",
    "vue-style-loader": "^3.0.1",
    "vue-template-compiler": "^2.5.2",
    "webpack": "^3.6.0",
    "webpack-bundle-analyzer": "^2.9.0",
    "webpack-dev-server": "^2.9.1",
    "webpack-merge": "^4.1.0"
  },
  "engines": {
    "node": ">= 4.0.0",
    "npm": ">= 3.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ]
}

หลังจากรวมไฟล์สคริปต์สำหรับองค์ประกอบที่กำหนดเองและไลบรารี vue แล้ว index.html ของฉันจะมีลักษณะดังนี้:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>example</title>
    <script src="vue/dist/vue.min.js"></script>
    <script src="vue-custom-element/dist/vue-custom-element.js"></script>

  </head>

  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>

</html>

person David J.    schedule 27.12.2017    source แหล่งที่มา
comment
คุณช่วยเจาะจงกว่านี้หน่อยได้ไหม? 1) คุณหมายถึงอะไรโดยไม่มีอะไรเกิดขึ้น? คุณคาดหวังว่าจะเกิดอะไรขึ้น เกิดอะไรขึ้น? คอนโซลไม่ได้ทำอะไรเลยเหรอ? ไม่มีอะไรถูกสร้างขึ้นใน /dist เหรอ? 2) คุณคาดหวังว่าจะได้รับอะไรเมื่อสิ้นสุดกระบวนการสร้าง? วิธีที่คุณตั้งค่าตอนนี้ จะไม่ใช่คอมโพเนนต์แบบรวมที่จะรวมไว้ในเพจ แต่จะเป็นแอปพลิเคชัน Vue แบบรวมที่ รวม องค์ประกอบที่กำหนดเองหนึ่งรายการ แต่ไม่ได้ใช้ เทมเพลต vue-cli webpack มีไว้เพื่อเขียนแอปพลิเคชัน ไม่ใช่องค์ประกอบเดียว   -  person Linus Borg    schedule 27.12.2017
comment
@LinusBorg ฉันคาดหวังว่า npm run build จะส่งออก example.js ใน /dist นอกเหนือจากสิ่งที่มันทำตามปกติ เอกสารที่ alligator.io ระบุไว้อย่างชัดเจนว่า เมื่อพิจารณาจากไฟล์ที่ฉันรวมไว้ในคำถามของฉัน แล้ว ...หลังจากสร้างเป็นสคริปต์แบบสแตนด์อโลน คุณควรจะสามารถเพิ่มสคริปต์นั้นลงในหน้าเว็บใดก็ได้ และให้มันแสดงองค์ประกอบตัวอย่างตามที่คาดไว้ . ฉันไม่ได้หมายความว่า webpack build ไม่ทำงานเลย   -  person David J.    schedule 27.12.2017
comment
webpack ไม่รู้ว่าคุณต้องการไฟล์ example.js แยกกัน การกำหนดค่า webpack บอกว่าควรคอมไพล์ main.js เป็น /dist/app.js ไม่มีอะไรอื่นอีก นั่นคือสิ่งที่ฉันหมายถึงเมื่อฉันบอกว่าเทมเพลต webpack ได้รับการตั้งค่าเพื่อสร้างแอป ไม่ใช่องค์ประกอบแบบสแตนด์อโลน ฉันจะพยายามเขียนคำตอบเล็ก ๆ น้อย ๆ แต่มีหลายสิ่งที่ต้องเปลี่ยนแปลงหากคุณต้องการทำสิ่งนี้ ไม่รู้ว่าฉันจะประสบความสำเร็จหรือไม่   -  person Linus Borg    schedule 27.12.2017
comment
@LinusBorg ฉันไม่รู้ว่ามีส่วนเกี่ยวข้องมากกว่าที่รวมอยู่ในบทช่วยสอน เป็นเรื่องแปลกที่ไม่มีคำแนะนำใด ๆ เกี่ยวกับวิธีที่ 'สร้างเป็นสคริปต์แบบสแตนด์อโลน' มันจะมีประโยชน์มากถ้าคุณเพียงชี้ให้ฉันไปในทิศทางที่ถูกต้องขอบคุณมาก   -  person David J.    schedule 27.12.2017


คำตอบ (1)


เอกสารและบทความ alligator.io ไม่ได้อธิบาย แต่เพื่อให้ทำงานได้ vue-custom-element ยังคงต้องใช้ไลบรารี Vue.js และ vue-custom-element

ดังนั้นคุณต้องใช้ <script> รวมถึงที่ webpack สร้างขึ้นใน index.html


พบบทช่วยสอนที่กล่าวถึงว่า: http://vuetips.com/vue-web-components

การใช้งานนี้จำเป็นต้องมีไฟล์หลักของ Vue.js และไลบรารี vue-custom-element ที่จะรวมอยู่ในเพจของคุณ

นอกจากนี้ยังกล่าวถึง https://github.com/kartsims/vue-customelement-bundler ซึ่งเป็นเทมเพลตที่สร้างทุกอย่างไว้ในไฟล์ .js ไฟล์เดียว

person yuriy636    schedule 27.12.2017
comment
ฉันไม่แน่ใจว่าฉันเข้าใจคุณถูกต้องหรือไม่ แต่ฉันพยายามปฏิบัติตามคำแนะนำของคุณและเพิ่มเส้นทางไลบรารีไปยัง index.html ในแท็กสคริปต์ มันยังใช้งานไม่ได้ ฉันอัปเดตคำถามด้วย index.html ปัจจุบันของฉัน โปรดดู. - person David J.; 27.12.2017
comment
@เดวิดเจ ฉันหมายถึงเส้นทางที่สร้างโดย webpack ใน /dist/index.html ซึ่งคุณสามารถเห็น <script>s สำหรับแอป ผู้ขาย และรายการ สิ่งเหล่านั้น (และไฟล์ใน /dist/static/js) คือสิ่งที่คุณต้องใช้ใน index.html อิสระของคุณ - person yuriy636; 27.12.2017
comment
ขออภัย แต่ฉันไม่เข้าใจ ฉันคัดลอกแอป ผู้ขาย และสคริปต์รายการที่สร้างขึ้นนั้นรวมจาก index.html ใน /dist ลงใน index.html ในโฟลเดอร์โครงการ (นี่คือสิ่งที่ฉันเข้าใจจากการตอบกลับของคุณ) แต่นั่นไม่ได้ทำอะไรเลยเมื่อรันบิลด์ คุณช่วยบอกฉันได้ไหมว่าไฟล์ใดที่ต้องแก้ไขและต้องแทรกไฟล์ใดบ้าง - person David J.; 27.12.2017
comment
@เดวิดเจ แย่เลย เมื่อคุณพูดถึง index.html ของคุณ ฉันเข้าใจว่าคุณมีโฟลเดอร์อื่นที่คุณกำลังทดสอบส่วนประกอบโดยไม่มีสภาพแวดล้อม vue และ webpack ทั้งหมด คุณไม่จำเป็นต้องแก้ไขไฟล์ใดๆ | ฉันกำลังพูดถึงการนำกลับมาใช้ใหม่ หากคุณยังต้องการสร้างไฟล์ .js ไฟล์เดียว ให้ลองตรวจสอบ Bundler ที่ฉันเชื่อมโยงไว้ - person yuriy636; 27.12.2017
comment
@ yuri636 ฉันทำตามคำแนะนำของ Bundler ทุกประการและนั่นคือสิ่งที่ทำให้ฉันถามคำถาม มันไม่สมบูรณ์ - person David J.; 29.12.2017