Nuxt
this is nuxt
@Forever
Do your essay well
展开
-
Nuxt 使用 Vue 监听器 Bus 监听器使用教程
Nuxt 使用 Vue 监听器发送数据let data={ name:'test'} this.$root.$emit('setdata', {name: data})接收数据 this.$root.$on('setdata', (data) => { console.log(data.name) })原创 2020-05-14 17:29:15 · 1340 阅读 · 0 评论 -
Nuxt 框架 使用 Nprogress 加载条
Nuxt 框架 使用 Nprogress 加载条文章解析:安装 nprogress创建 router.js 插件nuxt.config.js 配置 使用 router.js 插件安装npm install nprogress --save实例创建 router.js 文件import VueRouter from 'vue-router'import Vue from 'vue'import NProgress from 'nprogress'import 'npr.原创 2020-05-13 18:10:55 · 1293 阅读 · 0 评论 -
一篇学会 - Vue ssr 框架 Nuxt 项目 动态路由、嵌套路由、动态嵌套路由 CSDN 官网 实例(详细解读)
Vue ssr Nuxt 框架 嵌套 动态 路由 详解路由Nuxt 默认 自动生成 pages 下文件 作为路由结构目录结构实例<template> <nuxt-link to="/example/home">首页</nuxt-link> <nuxt-link to="/example/login">登录</nuxt-link></template>动态路由项目结构解析:home 为父组件,.原创 2020-05-10 18:36:13 · 1135 阅读 · 0 评论 -
Vue Nuxt 解决 引入文件 报错 window or document is not defined
问题分析**window 或 document 在服务器端渲染时不存在 **错误示例<script> import '../../assets/js/Iconfont/iconfont.js'</script>解决方法全局plugins 属性配置的所有插件会在 Nuxt.js 应用初始化之前被加载导入配置 nuxt.config.js 设置 ssr 为...原创 2020-05-04 15:41:03 · 1856 阅读 · 1 评论 -
Vue 创建 Nuxt 项目 SSR 服务器渲染 解决 SPA 单页面 SEO优化 问题 (详细教程)
Vue SSR 服务器渲染 解决 SPA 单页面 SEO优化 问题构建步骤1. 创建nuxt 项目检查 npx // npm 5.2.0 以上版本默认包含 npx // 创建项目 npx create-nuxt-app project_nameChoose the package manager Yarn 需要安装 yarn 安装 yarnyarn 下载配置...原创 2020-05-03 22:53:18 · 1382 阅读 · 0 评论