色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

parcel vue

錢多多2年前7瀏覽0評論

Parcel是一個快速、零配置的Web應用程序打包工具,它使用了現代技術,其構建速度比其他打包器更快。同時,Vue.js是一款非常流行的漸進式JavaScript框架,它可以幫助開發者更快地開發Web應用程序。將兩者結合使用,可以讓開發者更加高效地構建Vue.js應用程序。

?

下面,我們將介紹如何使用Parcel來構建Vue.js應用程序。

?
//1、安裝Parcel
npm install -g parcel-bundler
?
//2、安裝Vue.js
npm install --save vue
?
//3、創建index.html文件,并在其中添加Vue.js代碼
<!DOCTYPE html>
<html>
? <head>
? ? <meta charset="UTF-8">
? ? <title>Parcel Vue</title>
? </head>
? <body>
? ? <div id="app">
? ? ? {{ message }}
? ? </div>
? ? <script src="./index.js"></script>
? </body>
</html>
?
//4、創建index.js文件,并在其中添加Vue.js代碼
import Vue from 'vue'
?
new Vue({
? el: '#app',
? data: {
? ? message: 'Welcome to Parcel Vue!'
? }
})
?
//5、運行Parcel
parcel index.html
?

上述代碼的運行結果是,會生成dist文件夾,其中包括一個index.html文件和一個index.js文件。其中,index.html文件已經被自動修改,以包含引用index.js文件的代碼。在瀏覽器中打開index.html文件,即可看到“Welcome to Parcel Vue!”的提示信息。

?

因此,使用Parcel Vue是非常簡單的。不需要進行任何配置,只需要安裝Parcel和Vue.js,并編寫基本的HTML和JavaScript代碼即可。相信這種方式將會是構建Vue.js應用程序的未來趨勢。