|
|
|
|
|
by zamalek
2427 days ago
|
|
You're misinterpreting what an SFC is, it's just something like the following: <template>
<!-- A mustache-like template -->
</template>
<script>
// JS, TS, or whatever
</script>
<style scoped>
/* CSS, LESS, SCSS or whatever */
</style>
That components may use other components itself, no part of SFCs disallow that. |
|