DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="xiaonaihu" />
<meta name="generator" content="HBuilder X" />
<title>具名插槽title>
<script src="../../lib/vue.js" type="text/javascript" charset="utf-8">script>
head>
<body>
<div id="app">
<cpn>
<span slot="center">Middlespan>
cpn>
div>
<template id="cpn">
<div>
<slot name = "left">
<span>Leftspan>
slot>
<slot name = "center">
<span>Centerspan>
slot>
<slot name = "right">
<span>Rightspan>
slot>
div>
template>
body>
html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30