0

in, Vue package, i want to import css file at all in index.html.

now, 'index.html' > 'App.vue' mount by (#app) > 'Todo.vue' mount by router.

Plz help me, thank you. :)

1 Answers1

1

You can import it in main.js file.

import 'bootstrap/dist/css/bootstrap.css'

This will be available in your all components.

Hardik Raval
  • 1,783
  • 16
  • 25