:%s/<Ctrl-V><Ctrl-M>/\r/g
Where
Explanation
:%s
substitute, % = all lines
<Ctrl-V><Ctrl-M>
^M characters (the Ctrl-V is a Vim way of writing the Ctrl ^ character)
/\r/
with new line (\r)
g
And do it globally (not just the first occurrence on the line).