I am having a problem storing strings into a vector

I now how to store int into a vector

vector<int> vecList(10);

for (int i = 0; i < 10; i++)
vecList[i] = i;

If anyone can point me in the right direction that would be great!!!

Thanks!!!