logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue父子组件嵌套的时候遇到 - Component template should contain exactly one root element. If you are using v-i

今天在学习vue组件的嵌套时页面报错。大概的意思是:组件模板应该包含一个根元素。错误代码: var childComponent = Vue.extend({template: '<div>this is child template</div>'});Vue.component("parent",{template: '<div>this i

VUE多层路由嵌套

例如:在做系统时,主页面有两个功能【home】and【news】,在【home】下又分为登录和注册。首先需要将各种模板进行抽离。定义模板<template id="home">//home模板,里面含子视口<div><router-link to="/home/login">登录</router-link><router-link to="/home

v-for与组件的结合使用

这个例子是vue官网上面一个较为基础的例子,由于刚刚接触vue。所以将例子中一些不懂的语法记录下来。1. 在vue组件开发过程中is的用法:一般在vue定义组件时,都会使用一些自定义的标签。is的含义就是将原生的html标签当做定义的组件使用。2. props的用法:组件实例的作用域是独立的。这意味子组件的模板内不能直接引用父组件的数据。可以使用 props 把数据传给子组件。“prop” 是组

vuex的基本用法和mapaction传值问题

vuex的理论知识就不多提了,官网上已经有明确的讲解。用一个简单的例子来描述一下基本的用法:第一步:npm install vuex –save-dev第二步:在目录中创建store目录配置管理状态//store/index.js/*** Created by zhaohuan on 2017/7/13.*/import Vue from 'vue'import Vuex fr

Vue中render方法的使用

先说一下对官网上demo的个人理解:<!DOCTYPE html><html><head><title>Vue的render方法说明</title><script src="vue.js"></script></head><body><div id="app"><child :level="1">hello world</child>

vue父子组件嵌套的时候遇到 - Component template should contain exactly one root element. If you are using v-i

今天在学习vue组件的嵌套时页面报错。大概的意思是:组件模板应该包含一个根元素。错误代码: var childComponent = Vue.extend({template: '<div>this is child template</div>'});Vue.component("parent",{template: '<div>this i

mac下载配置mongodb数据库

1.使用brew下载mongodbbrew install mongodbbrew的安装:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"将以上命令粘贴到终端brew官网:https://brew.sh/index_zh-cn.html2.新建(dat

到底了