Skip to content

Commit 50a75f3

Browse files
committed
add redaction fixes to docs readme
1 parent 27721dc commit 50a75f3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Vue.use(VueTailwind)
4444

4545
### 2.2 Or better yet, create your own theme:
4646

47-
Let's say, for example, that for the specific needs of your project the text inputs should have a `blue two width border` instead of the default border, the button should has `more rounded borders`, and the primary button should be `purple`.
47+
Let's say, for example, that for the specific needs of your project the text inputs should have a `blue two width border` instead of the default border, the button should have `more rounded borders`, and the primary button should be `purple`.
4848

4949
::: tip
5050

@@ -146,6 +146,8 @@ module.exports = {
146146

147147
## Install only the components you need
148148

149+
If you want to reduce the bundle size by importing only the components you need you can do it by importing the component directly and registering it like this:
150+
149151
```
150152
import TInput from 'vue-tailwind/src/elements/TInput.vue'
151153
import TAlert from 'vue-tailwind/src/components/TAlert.vue'
@@ -163,7 +165,7 @@ _* Notice that you can pass the classes you want to override as you do when impo
163165

164166
_** Also notice that the form inputs are in the `src/elements/` path and the components in `src/components/` path._
165167

166-
You can also import the component from another custom component but in that case, you currently can't override the default theme, still, you can set the classes by using the props though, look at this example:
168+
You can also import the component from another custom component but in that case, you currently can't override the default theme. However, you can set the classes by using the props, look at this example:
167169

168170
```
169171
<template>

0 commit comments

Comments
 (0)