@myissue/vue-website-page-builder 3.0.19 → 3.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -18
- package/dist/vue-website-page-builder.js +170 -170
- package/dist/vue-website-page-builder.umd.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -135,7 +135,7 @@ import SearchComponent from './ComponentsPageBuilder/SearchComponent.vue'
|
|
|
135
135
|
|
|
136
136
|
You can display your company logo in the page builder interface by passing a logo URL to the `PageBuilderLogo` prop. When provided, the logo will appear in the top toolbar of the page builder.
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
Basic Usage:
|
|
139
139
|
|
|
140
140
|
```vue
|
|
141
141
|
<script setup>
|
|
@@ -148,7 +148,7 @@ import '@myissue/vue-website-page-builder/style.css'
|
|
|
148
148
|
</template>
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
|
|
151
|
+
configuration Options
|
|
152
152
|
|
|
153
153
|
| Prop | Type | Default | Description |
|
|
154
154
|
| ----------------- | -------- | ------- | ----------------------------------- |
|
|
@@ -156,21 +156,6 @@ import '@myissue/vue-website-page-builder/style.css'
|
|
|
156
156
|
|
|
157
157
|
#### Examples
|
|
158
158
|
|
|
159
|
-
**With company logo:**
|
|
160
|
-
|
|
161
|
-
```vue
|
|
162
|
-
<PageBuilder PageBuilderLogo="/logo/square-logo.svg" />
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
#### Logo Requirements
|
|
168
|
-
|
|
169
|
-
- **Format**: SVG, PNG, or JPG recommended
|
|
170
|
-
- **Size**: Optimized for 24px height (width will scale proportionally)
|
|
171
|
-
- **Path**: Can be absolute URL, relative path, or imported asset
|
|
172
|
-
- **Accessibility**: Include appropriate alt text (automatically set to "Logo")
|
|
173
|
-
|
|
174
159
|
The logo will be displayed with a subtle border separator and proper spacing in the page builder toolbar.
|
|
175
160
|
|
|
176
161
|
## Contributing
|
|
@@ -184,4 +169,3 @@ The logo will be displayed with a subtle border separator and proper spacing in
|
|
|
184
169
|
## License
|
|
185
170
|
|
|
186
171
|
[MIT License](./LICENSE)
|
|
187
|
-
```
|