要在 vue.js 3 中运行单个页面应用程序,您可以使用两种方法:使用静态文件服务器,安装一个静态文件服务器(如 http-server 或 serve),运行服务器并打开应用程序 index.html 文件。使用 vue cli,安装 vue cli,创建新项目,安装 vue-router,在 main.js 中导入路由,在 router.js 中定义路由,然后运行应用程序。
如何运行 Vue.js 3 单个页面
方法一:使用静态文件服务器
npx http-server
方法二:使用 Vue CLI
npm install -g @vue/cli
vue create my-app --no-git
vue add router
import router from './router'
const routes = [ { path: '/', component: () => import('./components/Home.vue') } ] export default { routes }
npm run serve