2D Vectors

Hi everyone,

I usually create 2D Arrays like this:

var array:Array =
[
[1,2,3],
[4,5,6],
[7,8,9]
];

Could could anyone out there recommend how to achieve the same thing with the Vector class?

Thanks!