Mount CIFS Windows Share

HI, I can mount a windows share (from my old WHS 1.3) to my pi3~debian manually with this:

mount -t cifs //serverIP/sharename /home/pi/myNAS/myShare -o vers=1.0,username=XXXX,password=XXXX,workgroup=XXXX

I would prefer to add this to fstab but I need the -o parameter. Could you let me know if it can be incorporated, say, in the options?

Adding the below in fstab doesn’t work for me.
//serverIP/sharename /home/pi/myNAS/myShare cifs username=XXXX,password=XXXX,workgroup=XXXX,users,auto,user_xattr 0 0

Thanks.