% npm install --save bootstrap
package.json
{
"dependencies": {
"bootstrap": "^5.3.1",
"vue": "^3.3.4",
},
}
main.ts
import "bootstrap/dist/css/bootstrap.min.css"
views/Home.vue
<template>
<section>
<button type="button" class="btn btn-primary">Success</button>
</section>
</template>