vue檔案在瀏覽器運行的方法:1、開啟cmd指令窗口,使用cd指令進入包含vue檔案的vue專案目錄中;2、在專案目錄中,執行指令「npm run dev」啟動項目;3、在瀏覽器網址列輸入「localhost:8080」即可。
本教學操作環境:windows7系統、vue2.9.6版,DELL G3電腦。
vue檔案在瀏覽器中執行
#新vue檔案
##官方範例如下,你需要建立index.html 文件:
<html><body> <p id="app"></p> <script src="https://unpkg.com/vue@next"></script> <script src="https://cdn.jsdelivr.net/npm/vue3-sfc-loader/dist/vue3-sfc-loader.js"></script> <script> const options = { moduleCache: { vue: Vue }, async getFile(url) { const res = await fetch(url); if ( !res.ok ) throw Object.assign(new Error(url+' '+res.statusText), { res }); return await res.text(); }, addStyle(textContent) { const style = Object.assign(document.createElement('style'), { textContent }); const ref = document.head.getElementsByTagName('style')[0] || null; document.head.insertBefore(style, ref); }, } const { loadModule } = window['vue3-sfc-loader']; const app = Vue.createApp({ components: { 'my-component': Vue.defineAsyncComponent( () => loadModule('./myComponent.vue', options) ) }, template: '<my-component></my-component>' }); app.mount('#app'); </script></body></html>
<template> <p class="title"> hello world </p> </template> <script> export default { setup () { console.log('hello world') } } </script> <style scoped> .title { font-size: 40px; color: red; } </style>
#啟動專案
在cmd中,使用cd指令進入vue專案在專案目錄中,執行指令
在瀏覽器輸入localhost:8080即可。
以上是vue檔案怎麼在瀏覽器中執行的詳細內容。更多資訊請關注PHP中文網其他相關文章!