vue-writer icon indicating copy to clipboard operation
vue-writer copied to clipboard

Add single string usage

Open BekYahia opened this issue 11 months ago • 0 comments

New Feature

Now you can pass either an array or string via the new prop string

<!-- You can pass an array of strings -->
<vue-writer :string="['Hello World!', 'VueWriter is awesome!']" />
<!-- or a single string -->
<vue-writer string="you can use single string" />
  • The old prop array is deprecated and will be removed in the next major version
  • This PR has backward compatibility, so array is still usable.
<!-- You can pass an array of strings -->
<vue-writer :array="['Hello World!', 'VueWriter is awesome!']" />
<!-- or a single string -->
<vue-writer array="you can use single string" />
  • A Simple demo is added to showcases

BekYahia avatar Mar 17 '24 20:03 BekYahia