Skip to content

Latest commit

 

History

History

fragment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

功能

实现 以下功能

<>
	<div></div>
	<div></div>
	<div></div>
</>

基础用法

<template>
	<div>
		<vc-fragment>
			<div>1</div>
			<div>2</div>
			<div>3</div>
			<div>4</div>
			<div>5</div>
		</vc-fragment>
	</div>
</template>
<script>
import { Fragment } from '@wya/vc';

export default {
	name: 'vc-fragment-basic',
	components: {
		'vc-fragment': Fragment
	},
};
</script>