How i add css and html separately in vue js
i am beginner in vue and learn vue js but few question in my mind how can i add separately css and html file like an angular thanks in advance.
You could make a single file component like :
<template>
<div>This will be pre-compiled</div>
</template>
<script src="./my-component.js"></script>
<style src="./my-component.css"></style>
component.vue which contains the code above and the .js and .css files