# Quick Start
- Install the npm package
npm i press-ui
- Introduce and use normally in the page
For example the message-detail component:
<template>
<PressMessageDetail />
</template>
import PressMessageDetail from 'press-ui/press-message-detail/press-message-detail.vue'
export default {
components: {
PressMessageDetail,
}
}
- Configure
vue.config.js
Note that you need to configure transpileDependencies in vue.config.js:
module.exports = {
transpileDependencies: ['press-ui'],
}