Electric USB Juicer Blender Portable & Rechargeable Battery Juicer Cup YE-02 380 ml (with 4 blades)

K4Q0L34
$11.00 $16.00
Out of Stock

Description

  • Material: the cup is made of high quality borosilicate glass, sus304 stainless steel blades, food grade PP cup cover, eco-friendly and non-toxic ABS base and PC funnel filter layer.
  • Portable Blender: this lightweight and ultralight personal USB blender juicer cup is convenient to take out for travel and other outdoor activities, fit mots car cup holders.
  • USB Rechargeable Juicer Cup: it could be re-used with 1000mAh built-in lithium-ion battery (the Glass Blade Type with 4000mAh), and could be charged by power bank, laptop, car charger etc. due to the convenient charging USB interface.
  • Easy Start and Clean Button Juice Smoothie Maker: Double click button to turn on the blender, and single click to turn off. It is easy to clean, just add some water and then press the button.
  • Waterproof Fruit Blender: you could separate apart every part and clean it in water, but please note that the base could not be put in water in order to avoid damage the electronic components, like lithium-ion battery.

Capacity : 380ml
Product size: 23 x 7 x 7 cm

Related Products

You might also like

Whoops! There was an error.
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes) Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes)" Stacktrace: #0 Symfony\Component\Debug\Exception\FatalErrorException in /home/blacklb/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:129
0
Symfony
\
Component
\
Debug
\
Exception
\
FatalErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
129
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void