As of C++11 you can use a templated type alias
template
using MyArray = std::vector;
If you want to be more generic you can use a variadic template (which would allow for allocators in the case of vector without having to be specific)
template
using MyArray = std::vector;