i want to include other template in template, but it can not work
<template>
<div>hello</div>
<template src="./base.html"></template>
<div>world</div>
</template>
This is not supported. Just use components or partials.
This is not supported. Just use components or partials.
Is any methods to pass upper's instances to the child components? Maybe like the blow
<template>
<child-com {...this} />
</template>
<script>
...
</script>
Most helpful comment
This is not supported. Just use components or partials.